添加标题信息时,我在发送电子邮件时遇到问题。但是,当我只是删除标头参数时,它可以工作。怎么了?是代码吗?或者我需要在 Web 服务器管理面板上更改某些设置以显示“允许标题”或其他内容?我正在尝试发送到 hotmail,以防这对确定问题有任何影响。任何帮助将不胜感激。谢谢。
以下不发送电子邮件:
<?php
$to = 'iputmyrealemailhere@hotmail.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com';
mail($to, $subject, $message, $headers);
?>
下面发送电子邮件:
<?php
$to = 'iputmyrealemailhere@hotmail.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com';
mail($to, $subject, $message);
?>