2

Web ですべての例を読みましたが、まだ GMAIL SMTP に接続できないようです。これが私が実行しているコードです:

include("phpMailer/class.phpmailer.php"); // path to the PHPMailer class
$mail = new PHPMailer(); 
$mail->IsSMTP(); // send via SMTP

$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "myUsername"; // SMTP username
$mail->Password = "myPassword"; // SMTP password
$mail->SMTPDebug = 1;
$webmaster_email = "webMasterEmail@gmail.com"; //Reply to this email ID
$email="someone@gmail.com"; // Recipients email ID
$name="SomeonesName"; // Recipient's name
$mail->From = $webmaster_email;
$mail->FromName = "Me";
$mail->AddAddress($email,$name);
$mail->AddReplyTo($webmaster_email,"Webmaster");
$mail->WordWrap = 50; // set word wrap
$mail->IsHTML(true); // send as HTML
$mail->Subject = "This is the subject";
$mail->Body = "Hi,
This is the HTML BODY "; //HTML Body
$mail->AltBody = "This is the body when user views in plain text format"; //Text Body
if(!$mail->Send())
{
    echo "Mailer Error: " . $mail->ErrorInfo;
}
else
{
    echo "Message has been sent";
}

ここでポートを設定しようとしましたが、class.smtp.php ファイルで次のように現在の設定も行っています。

$host = "ssl://smtp.gmail.com";
$port = 465;

同じエラーが発生し続け、ssl が有効になっていることを確認しました。私が得るエラーは次のとおりです。

SMTP -> ERROR: Failed to connect to server: No connection could be made because the target machine actively refused it.(10061)
4

1 に答える 1

1

上で述べたように、; を取り除くことで、すでに ssl を有効にしていました。php_openssl.dll の行で Apache を再起動します。さらに読んだところ、有効化コマンドの前に「[PHP_OPENSSL]」を持っている人もいることを知りました。それを追加してApacheを再起動したところ、すべてが機能しています! すべてのコメントをありがとう

php.ini で:

[PHP_OPENSSL]
extension=php_openssl.dll
于 2012-07-04T14:41:31.693 に答える