Laravel 4通过Madrill SMTP发送电子邮件

时间:2013-09-11 18:09:26

标签: php email smtp laravel-4 mandrill

我在Laravel 4中使用Mandrill SMTP发送电子邮件时遇到问题。我正在尝试使用Mail类发送邮件

Mail::send('emails.test', $message, function($email)
    {                       
        $email->to('email@gmail.com', 'User Name')->subject('Welcome message!')->from('emaill2@gmail');
    }

这是我的SMTP配置

'host'=>'smtp.mandrillapp.com',
'port'=>587,
'encryption'=>'tls',
'username'=>'emai@gmail.com',
'password'=>'mandrill api key'

此外,我尝试使用Gmail SMTP发送电子邮件,这非常有效! 有什么建议吗? 谢谢!

1 个答案:

答案 0 :(得分:0)

当只是假装邮件时,将显示电子邮件地址。看一下来源:https://github.com/laravel/framework/blob/master/src/Illuminate/Mail/Mailer.php?source=cc#L309