プロジェクトでphpmailerを使用しようとしていますが、GmailのSMTP設定が正しくないようです。私は以前ここで尋ねられたいくつかの質問を紹介しましたが、解決策のどれも私にとってはうまくいかないようです。PHPMailer- Mailerエラー:SMTP connect()に失敗しました。 https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting?
<?php
require 'PHPMailer-master/PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->IsSMTP();
$mail->Host = 'smtp.gmail.com';
$mail->Port = 587;
$mail->SMTPSecure = 'tls';
$mail->SMTPAuth = true;
$mail->Username = ''; //gmail address
$mail->Password = ''; // gmail password
$mail->From = '[email protected]';
$mail->FromName = 'John Doe';
$mail->AddAddress('[email protected]', 'Nick'); // Add a recipient
$mail->IsHTML(true); // Set email format to HTML
$mail->Subject = 'subject';
$mail->Body = 'message body';
$mail->AltBody = 'This is a plain-text message body';
$mail->addAttachment('images/apache_pb.png');
if (!$mail->send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>
にオプションを有効にするには、話してGmailからメールをrecived何エラーですか? – Webinion
これはgodaddyでホストされていますか? – developerCK
PHPMailer-メーラーエラー:SMTP connect()に失敗しました。 https://github.com/PHPMailer/PHPMailer/wiki/トラブルシューティング –