对于这个网站,我有一个联系表格,它只是发送这样的邮件:
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",
]
我不知道这些邮件功能之间有什么区别,为什么一个有效,另一个没有。
出于隐私原因,我用****
标记了网站名称我希望有人可以帮助我!
由于
答案 0 :(得分:1)
$m->from('no-reply@****.nl', 'No-Reply ****');
no-reply@****.nl
.env
文件