这是应发送的邮件(我的PHP中的代码):
$message =
"Hello \n
Thank you for registering with us. Here are your login details...\n
User ID: $user_name
Email: $usr_email \n
Passwd: $data[pwd] \n
";
mail($usr_email, "Login Details", $message,
"From: \"Member Registration\" <xxxx@gmail.com>\r\n" .
"X-Mailer: PHP/" . phpversion());
header("Location: thankyou.php");
exit();
和我的sendmail.ini
[sendmail]
smtp_server=smtp.gmail.com
smtp_port=25
error_logfile=error.log
debug_logfile=debug.log
auth_username=xxxx@gmail.com
auth_password=xxxxxxx
force_sender=xxxx@gmail.com
我是一个完全的初学者,所以这可能是完全错误的。 当我提交邮件功能所在的表单时,thankyou.php页面显示为指定的
答案 0 :(得分:0)
试试phpMailer。您没有正确地形成邮件以便谷歌接受...使用此类发送标准邮件。
答案 1 :(得分:0)
它不起作用,因为GMail使用不同的SMTP端口和SSL,并且您使用的是端口25。
您应该尝试在Google上找到一些网站,了解如何使用sendmail正确设置SMTP服务器,例如:http://appgirl.net/blog/configuring-sendmail-to-relay-through-gmail-smtp/