Mail::send(['html' => 'emailtemplate'], $dataCustomer, function ($m) use ($input)
{
$m->from('quotes@email.net', 'Mr. Foot');
$m->to($_POST['email'])->subject('Mr Foot Thanks You');
答案 0 :(得分:0)
您需要为密件抄送字段添加其他标头。
http://php.net/manual/en/function.mail.php
请参阅this related Stackoverflow question。
编辑:看起来您正在使用Laravel框架。要添加密件抄送,您可以致电:
$m->bcc('address@domain.com', 'Name');