Swiftmailerを使用してWebサイトからメールを送信しようとしています。 SwiftmailerがローカルホストではなくサーバーのIPアドレスをリレーとして使用しようとしているため、電子メールは延期され続けます。
Aug 2 14:18:28 picus sm-mta[21171]: v72IIS0I021171: from=<[email protected]>, size=347, class=0, nrcpts=1, msgid=<[email protected]>, proto=ESMTP, daemon=MTA-v4, relay=localhost [127.0.0.1]
Aug 2 14:18:28 picus sm-mta[21173]: v72IIS0I021171: to=<[email protected]>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=120347, relay=example.com. [my.servers.ip.address], dsn=4.0.0, stat=Deferred: Connection refused by example.com.
私のSymfonyコントローラーのコード、設定、パラメーター-
関連するコントローラーコード:
if ($form->isSubmitted() && $form->isValid()) {
$data = $form->getData();
$this->addFlash('success', 'Message sent successfully');
$data['message'] = str_replace("\n.", "\n..", $data['message']);
$mail = (new \Swift_Message())
->setSubject("[From My Website] - {$data['subject']}")
->setFrom($data['email'])
->setTo('[email protected]')
->setBody("{$data['name']} wrote the following message:\n\n{$data['message']}");
$this->get('mailer')->send($mail);
return $this->redirect($this->generateUrl('_home'));
}
config.yml
:
# Swiftmailer Configuration
swiftmailer:
transport: '%mailer_transport%'
Host: '%mailer_Host%'
username: '%mailer_user%'
password: '%mailer_password%'
port: '%mailer_port%'
spool:
type: file
path: '%kernel.cache_dir%/swiftmailer/spool'
parameters.yml
:
parameters:
mailer_transport: sendmail
mailer_Host: 127.0.0.1
mailer_user: null
mailer_password: null
mailer_port: null
本当にイライラするのは、bin/console swiftmailer:email:send
を使用してメッセージを作成し、スプール(bin/console swiftmailer:spool:send
)をフラッシュすると、正しく送信されることです。問題があるというメッセージを作成してコントローラーを介して送信すると、onlyになります。
私は何が間違っているのですか?
Ooof
問題を引き起こしていたのは私の側のDNSエラーでした。つまり、MXレコードをGoogleのメールサーバーにポイントするのを忘れたため、sendmailはexample.com
宛先アドレスの一部であり、メールサーバーを設定していなくても、SMTPリレーとして使用しようとしています。
すべての驚愕をお詫びします。うまくいけば、私の答えは他の人が壁に頭をぶつけているのに役立つでしょう。
SMTPトランスポートの代わりにSendmailトランスポートを使用するのはなぜですか?
https://swiftmailer.symfony.com/docs/sending.html
これを試して:
config.yml
# Swiftmailer Configuration
swiftmailer:
transport: "%mailer_transport%"
Host: "%mailer_Host%"
username: "%mailer_user%"
password: "%mailer_password%"
port: "%mailer_port%"
encryption: "%mailer_encryption%"
spool: { type: memory }
parameters.yml
parameters:
mailer_transport: smtp
mailer_Host: smtp.office365.com
mailer_user: [email protected]
mailer_password: my_password
mailer_port: 587
mailer_encryption: tls
コントローラ
$message = \Swift_Message::newInstance()
->setSubject('Subject')
->setFrom(array('[email protected]' => 'My name'))
->setTo(array($user->getMail()))
->setBcc(array('[email protected]', '[email protected]'))
->setBody(
$this->renderView(
'template.html.twig',
array('vars' => $vars)
),
'text/html'
);
$this->get('mailer')->send($message);
このアプローチを試すことをお勧めします。
$mailer = $container->get('mailer');
$spool = $mailer->getTransport()->getSpool();
$transport = $container->get('swiftmailer.transport.real');
$sender = 'your_sender';
$recipient = 'your_recipient';
$title = 'your_title';
$body = 'your_message';
$charset = "UTF-8";
$email = $mailer->createMessage()
->setSubject($title)
->setFrom("$sender")
->setTo("$recipient")
->setCharset($charset)
->setContentType('text/html')
->setBody($body)
;
$send = $mailer->send($email);
$spool->flushQueue($transport);
これを単純なYouMailServiceの送信メッセージにラップできます。または、このコードをコントローラーに挿入することもできます。これで十分です。