私はこのコードを持っており、すべてローカルサーバー上で動作します。電子メールは問題なく送信されます。SMTPエラー:SMTPホストに接続できませんでした
しかし、今、私はウェブサーバにコンテンツを渡し、私はこのエラーを取得...
SMTP Error: Could not connect to SMTP host.
SSLはserver..correctに有効でしょうか?そう、問題は何ですか?
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port
$mail->Username = "dnteiro"; // GMAIL username
$mail->Password = "xxx"; // GMAIL password
そして、あなたのファイアウォールは、ポート465への外部からの接続を許可しますか? – Mel
このPHPコードを実行するサーバー。 – Mel
偉大な中国ファイアウォールもちろん。 – zerkms