无法用php发送邮件

时间:2014-10-22 15:30:30

标签: php email

我正试图从我的php服务器发送邮件,但我不能。我从邮件功能收到了ok,但邮件中没有。

我在阅读有关同一主题的帖子:cannot send mail using php mail function

我检查了端口,我在127.0.0.1端口25中有一个。

这是我的php测试文件:     

$msg="";
if(isset($_POST['submit']))
{

$from_add = "mymail@gmail.com";

$to_add = "mymail@gmail.com";

$subject = "Test Subject";
$message = "Test Message";

$headers = "From: $from_add \r\n";
$headers .= "Reply-To: $from_add \r\n";
$headers .= "Return-Path: $from_add\r\n";
$headers .= "X-Mailer: PHP \r\n";


if(mail($to_add,$subject,$message,$headers))
{
    $msg = "Mail sent OK";
}
else
{
   $msg = "Error sending email!";
}
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"     "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <title>Test form to email</title>
</head>

<body>
<?php echo $msg ?>
<p>
<form action='<?php echo htmlentities($_SERVER['PHP_SELF']); ?>' method='post'>
<input type='submit' name='submit' value='Submit'>
</form>
</p>


</body>
</html>

我应该修改php.ini中的任何一行吗?此脚本显示我的&#34; Mail已发送OK&#34;按下按钮后没有收到任何信息。

我知道之前已经问过这个问题,但我已经检查了很多答案,但它们并不适合我的情况。那就是我再问的原因。

0 个答案:

没有答案