0

PHPMailer を使用して gmail からメールを送信しようとしていますが、次のエラーが表示されます。

SMTP エラー: SMTP ホストに接続できませんでした。

https://github.com/Synchro/PHPMailerから phpmailer クラスをダウンロードしました。

30 時間以上試したので、ポート 25、465、587 のほとんどの組み合わせを試しました。SMTP ユーザー名から @gmail.com を削除するなどの奇妙なことも試しました。助けてください。

<?php
/**
* Simple example script using PHPMailer with exceptions enabled
* @package phpmailer
* @version $Id$
*/

require '../class.phpmailer.php';

try {
    $mail = new PHPMailer(true); //New instance, with exceptions enabled

    $body             = file_get_contents('contents.html');
    $body             = preg_replace('/\\\\/','', $body); //Strip backslashes

    $mail->IsSMTP();                           // tell the class to use SMTP
    $mail->SMTPAuth   = true;                  // enable SMTP authentication
    $mail->SMTPSecure = 'ssl';
    $mail->Port       = 465;                    // set the SMTP server port
    $mail->Host       = "smtp.gmail.com"; // SMTP server
    $mail->Username   = "mymail@gmail.com";     // SMTP server username
    $mail->Password   = "mypass";            // SMTP server password

//  $mail->IsSendmail();  // tell the class to use Sendmail

    $mail->AddReplyTo("name@domain.com","First Last");

    $mail->From       = "name@domain.com";
    $mail->FromName   = "First Last";

    $to = "reciever@gmail.com";

    $mail->AddAddress($to);

    $mail->Subject  = "First PHPMailer Message";

    $mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
    $mail->WordWrap   = 80; // set word wrap

    $mail->MsgHTML($body);

    $mail->IsHTML(true); // send as HTML

    $mail->Send();
    echo 'Message has been sent.';
} catch (phpmailerException $e) {
    echo $e->errorMessage();
}
?>
4

2 に答える 2