自定义“来自电子邮件ID”

时间:2018-08-29 13:09:01

标签: email smtp office365 laravel-4.2

我的应用程序在mail.php文件中具有默认的“来自电子邮件ID”。主机是“ smtp.office365.com”。

我想在页面中使用另一个“ from id”。我的代码是:

Config::set('mail.username', 'newUsername');
Config::set('mail.password', "newPassword");
Mail::send('emails.testview',array('formData'=>$formData), function($message) use ($emails){
            $message->from('newFromEmail@test.com','test');
            $message->to($emails)->subject('someSubject');
});

但是我得到这个错误:

Swift_TransportException 无法使用2个可能的身份验证器在用户名为“ newUsername”的SMTP服务器上进行身份验证

这是什么意思?这样不能设置密码和用户名吗?

0 个答案:

没有答案