完整的邮件头
我需要一组邮件头来附加到PHP中的函数。我发送带有HTML的电子邮件,有时像Yahoo Mail这样的服务会阻止它们。因此,我需要确保我至少提供了正确的标头。mail()
我的代码:
// To send HTML mail, the 'Content-type' header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'From: MyCompany <welcome@mycompany.com>' . "\r\n";
还有什么我应该补充的吗?