web-dev-qa-db-ja.com

SMTPを使用しないPHPmailer

PHPMailerフォルダーをWebサーバーのルートフォルダーに追加しましたが、SMTPに関連するエラーが発生します。

メールアカウントにログインせずにPHPMailerを使用する方法はありますか?サーバーにメールをアドレスに送信させることはできますか?

私はこのサイトを検索していて、これを見つけました

$email = new PHPMailer();
$email->From      = '[email protected]';
$email->FromName  = 'Your Name';
$email->Subject   = 'Message Subject';
$email->Body      = $bodytext;
$email->AddAddress( '[email protected]' );

$file_to_attach = 'PATH_OF_YOUR_FILE_HERE';

$email->AddAttachment( $file_to_attach , 'NameOfFile.pdf' );

return $email->Send();

しかし、"Message could not be sent.Mailer Error: You must provide at least one recipient email address."というエラーが表示されます

9

SMTP行をコメントアウトしましたが、機能します

<?php

require 'phpmailer/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 = '';                 // SMTP username
//$mail->Password = '';                           // SMTP password
//$mail->SMTPSecure = 'tls';                            // Enable TLS encryption, `ssl` also accepted
//$mail->Port = 587;                                    // TCP port to connect to

$mail->From = '[email protected]';
$mail->FromName = 'Mailer';
$mail->addAddress('[email protected]', 'User');     // Add a recipient
$mail->addAddress('[email protected]');               // Name is optional
$mail->addReplyTo('[email protected]', 'Information');
$mail->addCC('[email protected]');
$mail->addBCC('[email protected]');

$mail->addAttachment('');         // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
$mail->isHTML(true);                                  // Set email format to HTML

$mail->Subject = 'Here is the subject';
$mail->Body    = 'This is the HTML message body <b>in bold!</b>';
$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';
}
?>
14

ジョセフ・クライフェルスIIは正しいです。

特に、_class.phpmailer.php_ファイルのコメントを参照してください。

_/**
 * Sets Mailer to send message using SMTP.
 * @return void
 */
public function IsSMTP() {
   $this->Mailer = 'smtp';
}

/**
 * Sets Mailer to send message using PHP mail() function.
 * @return void
 */
public function IsMail() {
  $this->Mailer = 'mail';
}

/**
 * Sets Mailer to send message using the $Sendmail program.
 * @return void
 */
public function IsSendmail() {
  if (!stristr(ini_get('sendmail_path'), 'sendmail')) {
    $this->Sendmail = '/var/qmail/bin/sendmail';
  }
  $this->Mailer = 'sendmail';
}
_

したがって、必ず設定から$mail->IsSMTP();を削除してください。ただし、サーバーによっては$mail->IsMail();または$mail->IsSendmail();を追加する必要がある場合がありますまたセットアップ。

2
squarecandy