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: - 'testing@example.com'
$mailer = /* Service '@mailer' from app/config.yml */; $message = \Swift_Message::newInstance(); $message->setFrom('from@example.com'); $message->setSubject('subj'); $message->setTo('to@example.com'); $message->setBody('some html body', 'text/html', 'utf-8'); $mailer->send($message);
With default transport it works good – sends email to testing@example.com (from configuration).
testing@example.com
But with mailgun transport it send email to to@example.com which is incorrect.
to@example.com
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
testing@example.com
(from configuration).But with mailgun transport it send email to
to@example.com
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: