mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 08:42:15 +09:00
Add SPF and DKIM hints for each sending method
This commit is contained in:
parent
ce66292fe4
commit
729bfe8239
10 changed files with 184 additions and 0 deletions
|
|
@ -29,4 +29,24 @@ class Postmark extends SMTP implements \Rhymix\Framework\Drivers\MailInterface
|
|||
{
|
||||
return array('api_token');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the SPF hint.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function getSPFHint()
|
||||
{
|
||||
return 'include:spf.mtasv.net';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the DKIM hint.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function getDKIMHint()
|
||||
{
|
||||
return '********.pm._domainkey';
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue