2017-03-25 16 views
0

私のアカウントでセキュリティの低いアプリケーションを有効にしましたが、それでも同じerrorです。 メッセージを送信できませんでした。メールエラー:SMTP connect()に失敗しました 無料のホスト000webhostを試しました。ここに私のコードはPHPMailerは仕事をしません。000webhost

 

    require 'PHPMailerAutoload.php'; 

    $mail = new PHPMailer; 

    //$mail->SMTPDebug = 3;        // Enable verbose debug output 

    $mail->isSMTP();          // Set mailer to use SMTP 
    $mail->Host = 'smtp.gmail.com'; // Specify main and backup SMTP servers 
    $mail->SMTPAuth = true;        // Enable SMTP authentication 
    $mail->Username = '[email protected]';     // SMTP username 
    $mail->Password = 'private';       // SMTP password 
    $mail->SMTPSecure = 'ssl';       // Enable TLS encryption, `ssl` also accepted 
    $mail->Port = 465;         // TCP port to connect to 

    $mail->setFrom('[email protected]', 'tEst'); 
    $mail->addAddress('[email protected]');  // Add a recipient 
    $mail->addAddress('[email protected]');    // Name is optional 
    $mail->addReplyTo('[email protected]', 'Information'); 
    $mail->addCC('[email protected]'); 
    $mail->addBCC('[email protected]'); 

    $mail->isHTML(true);         // Set email format to HTML 

    $mail->Subject = 'Here is the subject'; 
    $mail->Body = 'Hello ,Click On the link to reset password'; 
    $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; 

    if(!$mail->send()) { 
     echo 'Message could not be sent.'; 
     echo 'Mailer Error: ' . $mail->ErrorInfo; 
    } else { 
     echo 'Message has been sent'; 
    } 
    ?> 

助けてください。

+0

スクリプト実行時にエラーが発生しましたか? –

+0

"でも同じエラーです" - 何がエラーですか? – WillardSolutions

+0

メッセージを送信できませんでした。メールエラー:SMTP connect()が失敗しました – dcoder

答えて

0

ポート587に変更しますか?

smtp.Host = "smtp.gmail.com"; smtp.Port = 587;

+0

いいえポート587で多くの時間を過ごしました – dcoder

+0

ここにはエラー – dcoder

+0

の[リンク](http://douphixhaxel.atwebpages.com/)があります申し訳ありませんが動作しませんでした、私はまた、Googleの2つの要因のパスワードを調整し、通常の電子メールアカウントのパスワードの代わりにアプリケーション固有のパスワードを設定する必要があります。 アプリケーション固有のパスワードのリンク:https://support.google.com/accounts/answer/185833 上記で作成したアプリケーション固有のパスワードに$ mail-> Passwordを設定する必要があります。 –

関連する問題