将swiftmailer与mailtrap一起使用

时间:2019-02-15 16:23:40

标签: symfony swiftmailer

嗨,我正在使用symfony swiftmailer发送邮件。这是我的邮件代码。

$message = (new \Swift_Message('Hello Email'))
                ->setFrom('mymail@yahoo.com')
                ->setTo('mymail@yahoo.com')
                ->setBody(
                $this->templating->render(
                        // templates/emails/matching-cars.html.html.twig
                        'emails/matching-cars.html.twig', []
                ), 'text/html'
        );

        dd($this->mailer->send($message));

我使用Google帐户登录到了邮件陷阱。这是我的swiftmailer.yaml

swiftmailer:
    url: '%env(MAILER_URL)%'
    spool: { type: 'memory' }

.env文件中的这个MAILER_URL,

MAILER_URL=smtp://username:password@smtp.mailtrap.io:25?&auth_mode=cram-md5

但是我的邮件在任何收件箱中都不可见。没有出现错误。所以我猜该错误与mailtrap配置有关。如果有人可以帮助,那就太好了。

0 个答案:

没有答案