mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
52 lines
998 B
PHP
52 lines
998 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Drivers\Mail;
|
|
|
|
/**
|
|
* The Mandrill mail driver.
|
|
*/
|
|
class Mandrill extends SMTP implements \Rhymix\Framework\Drivers\MailInterface
|
|
{
|
|
/**
|
|
* Direct invocation of the constructor is not permitted.
|
|
*/
|
|
protected function __construct(array $config)
|
|
{
|
|
$config['smtp_host'] = 'smtp.mandrillapp.com';
|
|
$config['smtp_port'] = 465;
|
|
$config['smtp_security'] = 'ssl';
|
|
$config['smtp_user'] = $config['api_user'];
|
|
$config['smtp_pass'] = $config['api_token'];
|
|
parent::__construct($config);
|
|
}
|
|
|
|
/**
|
|
* Get the list of configuration fields required by this mail driver.
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function getRequiredConfig()
|
|
{
|
|
return array('api_user', 'api_token');
|
|
}
|
|
|
|
/**
|
|
* Get the SPF hint.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function getSPFHint()
|
|
{
|
|
return 'include:spf.mandrillapp.com';
|
|
}
|
|
|
|
/**
|
|
* Get the DKIM hint.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function getDKIMHint()
|
|
{
|
|
return 'mandrill._domainkey';
|
|
}
|
|
}
|