-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Closed
Description
Hi,
I want to switch from Swift Mailer to the Symfony Mailer component.
In Swift Mailer, I use a DKIM signature (cf the example below).
I don't find this signer into the Mailer component documentation.
# In Swift_Mailer
$privateKey = file_get_contents($this->dkim_private_key);
$domainName = 'MY_DOMAIN';
$selector = 'default';
$signer = new \Swift_Signers_DKIMSigner($privateKey,$domainName,$selector);
Thanks
stephanvierkant, anilex, mpdude and MockingMagician