我收到此错误(phplist电子邮件未发送webmaster@fall-pac.com:被称为Mail()而未连接)因为升级我的phplist没有其他更改我已从实际的smtp邮箱发送测试电子邮件它工作,所以我知道它不是电子邮件地址我认为它必须是我的config.php文件中的东西,但似乎找到可能导致问题的任何帮助将是伟大的请看看我的config.php我已经把pastbin作为它放在这里http://pastebin.com/CjRKdu5H
答案 0 :(得分:0)
<?php
require("PHPMailer/class.phpmailer.php");
$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
//if $mail->SMTPSecure = 'tls';
// use $mail->Port = 465;
$mail->Host = 'smtp.gmail.com';
$mail->Port = 465;
$mail->Username = 'username';
$mail->Password = 'password';
$mail->SetFrom('xyz@some.com', 'Testing');
$mail->Subject = 'Yii Test';
$mail->Body = "hello";
$mail->AddAddress('xyz@some.com');
if(!$mail->Send()) {
$error = 'Mail error: '.$mail->ErrorInfo;
return false;
} else {
echo $error = 'Message sent!';
return true;
}
?>