大家好,我已经坚持了一段时间了。我正在尝试从xampp发送邮件。我已经在这里发布了几个解决方案,但它们似乎都没有工作。有点需要有人指出我正确的方向。
所以在我的 php.ini
中[mail function]
SMTP=smtp.gmail.com
smtp_port=587
sendmail_from = user@gmail.com
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
我还有 sendmail_path =" \" C:\ xampp \ sendmail \ sendmail.exe \" -t" 使用;
进行评论现在在我的 sendmail.ini
中[sendmail]
smtp_server=smtp.gmail.com
smtp_port=587
error_logfile=error.log
debug_logfile=debug.log
auth_username=user@gmail.com
auth_password=123456
force_sender=shadidhaque2014@gmail.com
P.s:我在sendmail.ini中只有上面的代码 现在对于php脚本我有一些非常简单的事情:
$send=mail('rzs2009@yahoo.com', 'subject', 'blah blah blah');
if ($send) {
# code..
echo "yes";
}else
{
echo "no";
}
现在每当我尝试运行程序时,我都会得到一个no。所以没有发送电子邮件。我哪里可能出错。 提前谢谢。
答案 0 :(得分:0)
像这样修改你的代码:
function smtpmailer($to, $from, $from_name, $subject, $body) {
global $error;
$mail = new PHPMailer(); // create a new object
$mail->IsSMTP(); // enable SMTP
$mail->SMTPDebug = 0; // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true; // authentication enabled
$mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail
$mail->Host = 'smtp.gmail.com';
$mail->Port = 465;
$mail->Username = GUSER;
$mail->Password = GPWD;
$mail->SetFrom($from, $from_name);
$mail->Subject = $subject;
$mail->Body = $body;
$mail->AddAddress($to);
if(!$mail->Send()) {
$error = 'Mail error: '.$mail->ErrorInfo;
return false;
} else {
$error = 'Message sent!';
return true;
}
}
http://www.web-development-blog.com/archives/send-e-mail-messages-via-smtp-with-phpmailer-and-gmail/