我已经创建了 PHP 应用程序并使用 heroku 进行了部署。在应用程序中,我有联系表格,可以将邮件发送到我的 gmail 帐户。为了实现这一点,我编写了以下 PHP 代码
<?php
$to = "to@gmail.com";
$subject = "This is subject";
$message = "This is simple text message.";
$header = "From:from@yantranet.com \r\n";
$retval = mail ($to,$subject,$message,$header);
if( $retval == true ){
echo "Message sent successfully...";
}else{
echo "Message could not be sent...";
}
?>
我的 php 脚本正在执行。但它不是在发送邮件,而是在显示Message could not be sent
。任何人都可以帮助使用 PHP 实现联系表单吗?