我的应用程序在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服务器上进行身份验证
这是什么意思?这样不能设置密码和用户名吗?