PHPページからGMail SMTPサーバーを使用してメールを送信する


389

PHPページからGMailのSMTPサーバー経由でメールを送信しようとしていますが、次のエラーが発生します。

認証失敗[SMTP:SMTPサーバーは認証をサポートしていません(コード:250、応答:サービスでmx.google.com、[98.117.99.235]サイズ35651584 8ビットMIME STARTTLS拡張ステータスコードパイプライン処理)]

誰か助けてもらえますか?これが私のコードです:

<?php
require_once "Mail.php";

$from = "Sandra Sender <sender@example.com>";
$to = "Ramona Recipient <ramona@microsoft.com>";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";

$host = "smtp.gmail.com";
$port = "587";
$username = "testtest@gmail.com";
$password = "testtest";

$headers = array ('From' => $from,
  'To' => $to,
  'Subject' => $subject);
$smtp = Mail::factory('smtp',
  array ('host' => $host,
    'port' => $port,
    'auth' => true,
    'username' => $username,
    'password' => $password));

$mail = $smtp->send($to, $headers, $body);

if (PEAR::isError($mail)) {
  echo("<p>" . $mail->getMessage() . "</p>");
 } else {
  echo("<p>Message successfully sent!</p>");
 }
?>

回答:


357
// Pear Mail Library
require_once "Mail.php";

$from = '<fromaddress@gmail.com>';
$to = '<toaddress@yahoo.com>';
$subject = 'Hi!';
$body = "Hi,\n\nHow are you?";

$headers = array(
    'From' => $from,
    'To' => $to,
    'Subject' => $subject
);

$smtp = Mail::factory('smtp', array(
        'host' => 'ssl://smtp.gmail.com',
        'port' => '465',
        'auth' => true,
        'username' => 'johndoe@gmail.com',
        'password' => 'passwordxxx'
    ));

$mail = $smtp->send($to, $headers, $body);

if (PEAR::isError($mail)) {
    echo('<p>' . $mail->getMessage() . '</p>');
} else {
    echo('<p>Message successfully sent!</p>');
}

141
Mail.phpですか?このファイルはどこから入手できますか?
Zain Shaikh

18
どなたか、Mail.phpファイルを入手できるリンクを教えてください。試してみたがうまくいかなかったからね。ありがとう
Yoosuf

11
上記のこの例の@記号はどこにありますか?そこには1つもありません。
darkAsPitch

6
私は、myaccount.gmail.comが電子メール標準でmyaccount@gmail.comと同じであると思います。
シャーウィンフライト

3
サーバーを指定している場合は、@ gmailを含める必要はありません。myaccountユーザー名を入力するだけです。
ジャック

106

Swiftメーラーを使用すると、Gmailの認証情報からメールを送信するのが非常に簡単になります。

<?php
require_once 'swift/lib/swift_required.php';

$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, "ssl")
  ->setUsername('GMAIL_USERNAME')
  ->setPassword('GMAIL_PASSWORD');

$mailer = Swift_Mailer::newInstance($transport);

$message = Swift_Message::newInstance('Test Subject')
  ->setFrom(array('abc@example.com' => 'ABC'))
  ->setTo(array('xyz@test.com'))
  ->setBody('This is a test mail.');

$result = $mailer->send($message);
?>

2
これは、GMAIL_USERNAME、GMAIL_PASSWORD、およびFromアドレスとToアドレスを変更するだけで「最初に」機能しました。他に解決策はありませんでした。ありがとう。
MarcoMuciño2013年

7
私は同意します。SwiftMailerは、梨をいじるよりもはるかに簡単なメールソリューションのドロップです。PHPのphp_openssl拡張機能を有効にすることを忘れないでください。
Soth 2013年

1
SwiftMailerを使用した素晴らしいソリューション!+1
アマルムラーリ2014

1
ああ。icantはswiftmailerを動作させます。その「コンポーザー」の使い方がわからないので、githubからswiftmailer zipをダウンロードし、open_sslを有効にしてから、Gmailのメールとパスワードを入力しましたが、それでも機能しませんでした。
boi_echos 2014

3
私の愚かさでごめんなさい。「安全性の低いアプリ」を有効にするように指示するメールがあるため、Gmailアカウントを開く必要があります。その後、現在機能しています
boi_echos


33

Pear Mailはお勧めしません。2010年以降は更新されていません。ソースファイルもお読みください。ソースコードはほとんど古く、PHP 4スタイルで書かれており、多くのエラー/バグが投稿されています(Google it)。私はSwift Mailerを使用しています。

Swift Mailerは、PHP 5で記述されたWebアプリケーションに統合され、多数の機能を備えた電子メールを送信するための柔軟でエレガントなオブジェクト指向のアプローチを提供します。

SMTP、sendmail、postfix、または独自の独自のトランスポート実装を使用してメールを送信します。

ユーザー名とパスワードおよび/または暗号化を必要とするサーバーをサポートします。

リクエストデータコンテンツを削除せずに、ヘッダーインジェクション攻撃から保護します。

MIME準拠のHTML /マルチパートメールを送信します。

イベント駆動型プラグインを使用して、ライブラリをカスタマイズします。

大きな添付ファイルやインライン/埋め込み画像をメモリ使用量の少ない状態で処理します。

これは無料でオープンソースであり、Swift Mailerダウンロードしてサーバーにアップロードできます。(機能リストは所有者のWebサイトからコピーされます)。

Gmail SSL / SMTPとSwift Mailerの実際の例はこちらです...

// Swift Mailer Library
require_once '../path/to/lib/swift_required.php';

// Mail Transport
$transport = Swift_SmtpTransport::newInstance('ssl://smtp.gmail.com', 465)
    ->setUsername('username@gmail.com') // Your Gmail Username
    ->setPassword('my_secure_gmail_password'); // Your Gmail Password

// Mailer
$mailer = Swift_Mailer::newInstance($transport);

// Create a message
$message = Swift_Message::newInstance('Wonderful Subject Here')
    ->setFrom(array('sender@example.com' => 'Sender Name')) // can be $_POST['email'] etc...
    ->setTo(array('receiver@example.com' => 'Receiver Name')) // your email / multiple supported.
    ->setBody('Here is the <strong>message</strong> itself. It can be text or <h1>HTML</h1>.', 'text/html');

// Send the message
if ($mailer->send($message)) {
    echo 'Mail sent successfully.';
} else {
    echo 'I am sure, your configuration are not correct. :(';
}

これがお役に立てば幸いです。ハッピーコーディング... :)


1
これは機能しなくなり、常に「535-5.7.8ユーザー名とパスワードが受け入れられません」というメッセージが返されます。私の資格情報は問題なく、「安全性の低いアプリを許可する」をオンに設定しました。誰かがこれに対する修正を知っていますか?
AndrewB

PHP 5.xではSwiftが機能しないようです-?? 合体-爆破するだけです。
HerrimanCoder 2018年

28
<?php
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             = "gdssdh";
//$body             = eregi_replace("[\]",'',$body);

$mail->IsSMTP(); // telling the class to use SMTP
//$mail->Host       = "ssl://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       = 465;                   // set the SMTP port for the GMAIL server
$mail->Username   = "user@gmail.com";  // GMAIL username
$mail->Password   = "password";            // GMAIL password

$mail->SetFrom('contact@prsps.in', 'PRSPS');

//$mail->AddReplyTo("user2@gmail.com', 'First Last");

$mail->Subject    = "PRSPS password";

//$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test

$mail->MsgHTML($body);

$address = "user2@yahoo.co.in";
$mail->AddAddress($address, "user2");

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

?>

ホストを2度設定するのはなぜですか、どちらが正しいホストですか。
Emile Bergeron、2016年

class.phpmailer.phpファイルはどこで入手できますか?コードのみを貼り付けることはそれほど有用ではありません。plsにはコードに関する詳細な説明も含まれています!
GeneCode

一部の構文は古くなっていますが、PHPMailerは私にとって最良の解決策となりました+1
zoltar

20

SwiftMailerは外部サーバーを使用してメールを送信できます。

次に、Gmailサーバーの使用例を示します。

require_once "lib/Swift.php";
require_once "lib/Swift/Connection/SMTP.php";

//Connect to localhost on port 25
$swift =& new Swift(new Swift_Connection_SMTP("localhost"));


//Connect to an IP address on a non-standard port
$swift =& new Swift(new Swift_Connection_SMTP("217.147.94.117", 419));


//Connect to Gmail (PHP5)
$swift = new Swift(new Swift_Connection_SMTP(
    "smtp.gmail.com", Swift_Connection_SMTP::PORT_SECURE, Swift_Connection_SMTP::ENC_TLS));

14

質問にリストされているコードには2つの変更が必要です

$host = "ssl://smtp.gmail.com";
$port = "465";

SSL接続にはポート465が必要です。


6

Gmail経由でphpMailerライブラリを使用してメールを送信するGithubからライブラリファイルをダウンロードしてください

<?php
/**
 * This example shows settings to use when sending via Google's Gmail servers.
 */
//SMTP needs accurate times, and the PHP time zone MUST be set
//This should be done in your php.ini, but this is how to do it if you don't have access to that
date_default_timezone_set('Etc/UTC');
require '../PHPMailerAutoload.php';
//Create a new PHPMailer instance
$mail = new PHPMailer;
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 2;
//Ask for HTML-friendly debug output
$mail->Debugoutput = 'html';
//Set the hostname of the mail server
$mail->Host = 'smtp.gmail.com';
// use
// $mail->Host = gethostbyname('smtp.gmail.com');
// if your network does not support SMTP over IPv6
//Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission
$mail->Port = 587;
//Set the encryption system to use - ssl (deprecated) or tls
$mail->SMTPSecure = 'tls';
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Username to use for SMTP authentication - use full email address for gmail
$mail->Username = "username@gmail.com";
//Password to use for SMTP authentication
$mail->Password = "yourpassword";
//Set who the message is to be sent from
$mail->setFrom('from@example.com', 'First Last');
//Set an alternative reply-to address
$mail->addReplyTo('replyto@example.com', 'First Last');
//Set who the message is to be sent to
$mail->addAddress('whoto@example.com', 'John Doe');
//Set the subject line
$mail->Subject = 'PHPMailer GMail SMTP test';
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
$mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__));
//Replace the plain text body with one created manually
$mail->AltBody = 'This is a plain-text message body';
//Attach an image file
$mail->addAttachment('images/phpmailer_mini.png');
//send the message, check for errors
if (!$mail->send()) {
    echo "Mailer Error: " . $mail->ErrorInfo;
} else {
    echo "Message sent!";
}

5

私もこの問題を抱えていました。正しい設定を行い、安全性の低いアプリを有効にしましたが、それでも機能しませんでした。最後に、このhttps://accounts.google.com/UnlockCaptchaを有効にしたところ、うまくいきました。これが誰かの役に立つことを願っています。



4

PEARのMail.phpをUbuntuにインストールするには、次の一連のコマンドを実行します。

    sudo apt-get install php-pear
    sudo pear install mail
    sudo pear install Net_SMTP
    sudo pear install Auth_SASL
    sudo pear install mail_mime

0

「@ gmail.com」接尾辞のないGSuiteアカウントのソリューションがあります。また、@ gmail.comを使用するGSuiteアカウントでも機能すると思いますが、試していません。まず、GSuiteアカウントの「安全性の低いアプリ」オプションを変更する権限が必要です。権限がある場合(アカウント設定->セキュリティで確認できます)、「2段階認証」を無効にする必要があります。ページの最後に移動して[はい]に設定し、安全性の低いアプリケーションを許可します。それで全部です。これらのオプションを変更する権限がない場合、このスレッドのソリューションは機能しません。https://support.google.com/a/answer/6260879?hl=jaをチェックして、[許可する...]オプションを変更します。


0

@shasi kanthの提案を試しましたが、うまくいきませんでした。ドキュメントを読んだところ、いくつかの変更点があります。したがって、私はこのコードを使用してGmail経由でメールを送信することができました。ここで、vendor / autoload.phpはcomposerによって取得されます。

<?php
     require_once 'vendor/autoload.php';
     $transport = (new Swift_SmtpTransport('smtp.gmail.com', 465, 'ssl'))->setUsername ('SendingMail')->setPassword ('Password');

     $mailer = new Swift_Mailer($transport);

     $message = (new Swift_Message('test'))
      ->setFrom(['Sending mail'])
      ->setTo(['Recipient mail'])
      ->setBody('Message')
  ;

     $result = $mailer->send($message);
    ?>

-4

セットする

'auth' => false,

また、ポート25が機能するかどうかを確認します。


2
できません-Googleでは465または587での配達が必要です。mail.google.com /support/bin/answer.py?hl=ja&answer=13287をご覧ください。
crb 2009
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.