如何更改标题“从”发送邮件

时间:2011-08-21 18:20:31

标签: php email header

我使用此方法在我的网站上发送邮件:

$message="Hello";
$headers='From: info@hosting.com'."\r\n".'Reply-To: info@hosting.com'."\r\n".'X-Mailer: PHP/'.phpversion();
mail("destination@mail.com", "Title", $message, $headers);  

但是当我收到它时,字段From被写为info

我该如何更改?例如My Website Hosting

1 个答案:

答案 0 :(得分:6)

请改用此标头:From: "My Website Hosting" <info@hosting.com>