We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cspoo_swiftmailer_mailgun: key : 'key-somekey' domain : 'sandboxsomedomain.mailgun.org' swiftmailer: transport: 'mailgun' spool: { type: memory } # This will start sending emails on kernel.terminate event delivery_addresses: - '[email protected]'
$mailer = /* Service '@mailer' from app/config.yml */; $message = \Swift_Message::newInstance(); $message->setFrom('[email protected]'); $message->setSubject('subj'); $message->setTo('[email protected]'); $message->setBody('some html body', 'text/html', 'utf-8'); $mailer->send($message);
With default transport it works good – sends email to [email protected] (from configuration).
[email protected]
But with mailgun transport it send email to [email protected] which is incorrect.
Is it implemented but i'm using it wrong? Or, if not, how it can be workarounded?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With default transport it works good – sends email to
[email protected]
(from configuration).But with mailgun transport it send email to
[email protected]
which is incorrect.Is it implemented but i'm using it wrong? Or, if not, how it can be workarounded?
The text was updated successfully, but these errors were encountered: