我正在尝试使用 noreply 发送电子邮件,但它不起作用 - 它不会发送任何内容。我正在使用这个测试文件:
<?php
$to = 'myemailhere';
$subject = 'You received an email message!';
$message = 'This is a message in the email body form.';
$headers = 'From: noreply@example.com' . "\r\n" .
'Reply-To: noreply@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
可能是什么问题呢?顺便说一句,我正在使用 rackspacke,如果有人知道的话。
提前致谢!