发送邮件在 Laravel 5.1 中不起作用
Send Mail not working in Laravel 5.1
我创建了一个发送邮件的演示。
我在联系页面上发送邮件,它正在工作。
但是当我为 TO 使用动态电子邮件时,它不起作用。
不工作
Mail::send('emails.otp_mail_format',['otp'=>'123456'],
function($message){
$message->from('no-reply@example.com');
$message->**to($uEmailAddress)**->subject('AccountVerification');
});
但是在代码下面工作
Mail::send('emails.otp_mail_format',['otp'=>'123456'],
function($message){
$message->from('no-reply@example.com');
$message->**to('kanu@example.com')**->subject('AccountVerification');
});
to('example@gmail.com') is working
but to($uEmailAddress) then it is not worked
.
Mail::send('emails.otp_mail_format', ['otp'=>$user_otp],
function($message) use ($uEmailAddress)
{
$message->to($uEmailAddress)->from('no-reply@exaple.com','App Name')->subject('MyApp:: Account Verification');
});
我创建了一个发送邮件的演示。 我在联系页面上发送邮件,它正在工作。 但是当我为 TO 使用动态电子邮件时,它不起作用。
不工作
Mail::send('emails.otp_mail_format',['otp'=>'123456'],
function($message){
$message->from('no-reply@example.com');
$message->**to($uEmailAddress)**->subject('AccountVerification');
});
但是在代码下面工作
Mail::send('emails.otp_mail_format',['otp'=>'123456'],
function($message){
$message->from('no-reply@example.com');
$message->**to('kanu@example.com')**->subject('AccountVerification');
});
to('example@gmail.com') is working
but to($uEmailAddress) then it is not worked
.
Mail::send('emails.otp_mail_format', ['otp'=>$user_otp], function($message) use ($uEmailAddress) { $message->to($uEmailAddress)->from('no-reply@exaple.com','App Name')->subject('MyApp:: Account Verification'); });