Add SPF and DKIM hints for each sending method

This commit is contained in:
Kijin Sung 2016-05-19 14:11:55 +09:00
parent ce66292fe4
commit 729bfe8239
10 changed files with 184 additions and 0 deletions

View file

@ -43,6 +43,26 @@ class SES extends Base implements \Rhymix\Framework\Drivers\MailInterface
return array('us-east-1', 'us-west-2', 'eu-west-1');
}
/**
* Get the SPF hint.
*
* @return string
*/
public static function getSPFHint()
{
return '';
}
/**
* Get the DKIM hint.
*
* @return string
*/
public static function getDKIMHint()
{
return '********._domainkey';
}
/**
* Check if the current mail driver is supported on this server.
*