因此,我终于进入了我的小项目的PHP部分,并且无法正常工作。
我正在使用CentOS 6 Minimal,以及通过namecheap发送的私人电子邮件。
我目前已安装sendmail,但不知道自己在做什么错。我到处环顾四周,但似乎无济于事。我正在运行像这样的简单测试代码。
<?php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "test@hostinger-tutorials.com";
$to = "contact@privateemail.com";
$subject = "Checking PHP mail";
$message = "PHP mail works just fine";
$headers = "From:" . $from;
mail($to,$subject,$message, $headers);
echo "The email message was sent.";
?>
如果有人可以帮助我解决可能出错的地方,那就太好了。我不确定要提供什么。我编辑了php.ini文件,并执行了从namecheap获取的正确SMTP。