我有wamp server2但我安装phpmailer5会导致任何问题吗? 我的php.ini 我使用了this site
这是代码:
<?php
require_once('./PHPMailer_v5.1/class.phpmailer.php');
define('GUSER','phpmailer23@gmail.com'); // GMail username
define('GPWD','mypass'); // GMail password
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 = 25;
$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;
}
}
smtpmailer('nickparsa@gmail.com','phpmailer23@gmail.com', 'phpmailer', 'test mail message', 'Hello World!');
if (smtpmailer('nickparsa@gmail.com','phpmailer23@gmail.com', 'phpmailer', 'test mail message', 'Hello World!')) {
echo "sent";
}
if (!empty($error)) echo $error;
?>
这是输出:
SMTP Error: Could not connect to SMTP host. SMTP Error: Could not authenticate. Mail error: SMTP Error: Could not authenticate.
然后我去了php.ini并将smtpserver设置为smtp.google.com
SMTP = smtp.google.com
再次没有变化
答案 0 :(得分:0)
我刚刚测试了你的代码(使用端口465)并且它可以工作(我已将它发送到nickparsa@gmail.com和phpmailer23@gmail.com以便你确认)。你的问题代码仍然有25个端口,所以仔细检查一下。还要确保您提供正确的登录名和密码。