7

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!";
}

?>
4

4 に答える 4

19

私は同じ問題を抱えていましたが、変更するだけで解決しました:

これ:

$mail->body = 'Hello, this is my message.';

これに:

$mail->Body = 'Hello, this is my message.';

bodyBodyちょっとした間違いに!

于 2015-09-22T22:42:40.417 に答える
1

PHPMailer->MsgHTML() は、非絶対 URL を修正することで巧妙なことをしようとしますが、私にとっても、空を返すだけです。

$mail->IsHTML(true);
$mail->Body=$body;
于 2013-02-02T22:59:06.910 に答える
0

最初に、ssl 拡張機能を有効にする必要がありました (このサイトの別の投稿から取得しました)。これを行うには、php.ini を開き、変更して php_openssl.dll を有効にします。

;extension=php_openssl.dll

extension=php_openssl.dll

ここで、tls を有効にしてポート 587 を使用しますpreg_replace

最後に、「受信トレイ」に表示されることを期待していましたが、Gmailの「送信済み」ファイルに表示することができました。

このサイトは素晴らしいです!ありがとう。

于 2013-01-24T13:09:53.260 に答える