PHPMailer で動作する基本的な例を取得しようとしています。
私が行ったのは、PHPMailer_5.2.2フォルダー全体をアップロードし、表示されているコードに従って以下のページを構成することMailer Error: Message body empty
だけでした. これは、PHPMailer PHPMailer_5.2.2/examples/test_smtp_gmail_basic.php から使用しているサンプル ファイルです。
Outlook for Gmail で機能する設定を使用してみました。ユーザー名とパスワードはわかっています。SMTP ポートは 587 で、TLS に設定されています。以下のコードで SSL を TLS に置き換えてみましたが、それでも同じエラーが発生します。
提案されている次のコードも試しました。
これを変更しました:
$mail->MsgHTML($body);
これに
$mail->body = $body;
それでも同じエラーが発生します。他に設定する必要があるものはありますか? PHPMailer を使用するのは初めてで、標準の php メールを機能させることができますが、メールで送信するページには多くの html があり、すべての html を確認する必要がないため、これを試してみたい文字エスケープを入力すると、誰かがこれを使用することを推奨します。
<?php
//error_reporting(E_ALL);
error_reporting(E_STRICT);
date_default_timezone_set('America/Toronto');
require_once('../class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
$mail = new PHPMailer();
$body = file_get_contents('contents.html');
$body = preg_replace('/[\]/','',$body);
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "smtp.gmail.com"; // SMTP server
$mail->SMTPDebug = 1; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only
$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 = 587; // set the SMTP port for the GMAIL server
$mail->Username = "xxx@gmail.com"; // GMAIL username
$mail->Password = "xxx"; // GMAIL password
$mail->SetFrom('xxx@gmail.com', 'First Last');
$mail->AddReplyTo("xxx","First Last");
$mail->Subject = "PHPMailer Test Subject via smtp (Gmail), basic";
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML($body);
$address = "xxx.net";
$mail->AddAddress($address, "John Doe");
//$mail->AddAttachment("images/phpmailer.gif"); // attachment
//$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>