Laravel Mail适用于一个但不适用于其他

时间:2016-01-06 13:22:44

标签: php email laravel laravel-5.1

对于这个网站,我有一个联系表格,它只是发送这样的邮件:

Mail::send('emails.contact', $input, function ($m) {
    $m->from(Input::get('email'), Input::get('name'));
    $m->to('secretaris@****.nl', 'Secretaris ****')->subject('Contactform: '. Input::get('name'));
});

$ input变量只是:

$input = Input::all();

然后视图如下:

<html>
<body>

<b>{{$name}} ({{$mail}}) sent u a message via the contactform on ****.nl</b>
<br>
<div>
{{$message}}
</div>
<br>

</body>
</html>

此邮件发送。但是这个不知道如何:

Mail::send('emails.registermember', $data, function ($m) {
    $m->from('no-reply@****.nl', 'No-Reply ****');
    $m->to('secretaris@****.nl', 'Secretaris ****')->subject('Registration of ' . ucfirst(Input::get('firstname')) . ' as Register-member');
});

这里的$ data值是:

$data = [
    'naam' => ucfirst($user->voornaam) . ' ' . ucfirst($user->achternaam),
    'id' => $user->id,
];

有了观点:

<html>
<body>
<p>
    <b>{{$name}}</b> registered as register member at website of ****.
</p>

</body>
</html>

此邮件不发送并且正在执行Mail :: failures()返回:

[
"secretaris@****.nl",
]

我不知道这些邮件功能之间有什么区别,为什么一个有效,另一个没有。

出于隐私原因,我用****

标记了网站名称

我希望有人可以帮助我!

由于

1 个答案:

答案 0 :(得分:1)

  • 我怀疑错误在这一行

$m->from('no-reply@****.nl', 'No-Reply ****');

  • 请检查您是否可以通过Laravel
  • 发送电子邮件

no-reply@****.nl

  • 检查您是否在.env文件
  • 中正确配置了它