我有一个我在Xampp localhost上运行的php应用程序。它通过电子邮件服务进行用户注册,新用户将通过电子邮件注册,但在点击发送给用户注册的电子邮件的电子邮件链接激活之前,该帐户才会激活。
我发送电子邮件如下:
<html>
<head>
<title>Sending email using PHP</title>
</head>
<body>
<?php
$to = "user@yahoo.com";
$subject = "This is subject";
$message = "This is simple text message.";
$header = "From:user@GMail.com \r\n";
$retval = mail ($to,$subject,$message,$header);
if( $retval == true )
{
echo "Message sent successfully...";
}
else
{
echo "Message could not be sent...";
}
?>
</body>
</html>
电子邮件无法发送。在我从测试网站发送电子邮件之前,我需要做些什么,或者我做错了什么?
提前谢谢大家。