如何设置标题"回复"在Mailgun php API中?
我已经使用此代码但无法成像热设置标题
Mail::send('email.message', $data, function ($message) use ($data) {
$message->to($data['to_email'], $data['to_name'])
->subject($data['subject'])
->from($data['from_email'], $data['from_name']);
});
答案 0 :(得分:3)
就像在$message
链上添加 replyTo 一样简单
Mail::send('email.message', $data, function($message) use($data)
{
$message->to($data['to_email'], $data['to_name'])
->subject($data['subject'])
->from($data['from_email'], $data['from_name'])
->replyTo('REPLY.TO.THIS@email.com');
});
如果要为回复添加名称,只需添加名称为
的另一个参数->replyTo('REPLY.TO.THIS@email.com', 'Arsen Ibragimov')