我的PHP Send Mail功能有什么问题?我在实时服务器上托管这个脚本。
$to = 'myemail@gmail.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: exampleemail@gmail.com' . "\r\n" .
'Reply-To: exampleemail@gmail.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
if(mail($to, $subject, $message, $headers)){}
else{
echo "Email sending failed";
}
我一直收到“电子邮件发送失败”消息。