web-dev-qa-db-ja.com

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

私はPHPページからGMailのSMTPサーバーを介してEメールを送信しようとしていますが、私はこのエラーが出ます:

認証に失敗しました[SMTP:SMTPサーバーは認証をサポートしていません(コード:250、応答:mx.google.com at your service、[98.117.99.235]

誰も手伝ってくれる?これが私のコードです:

<?php
require_once "Mail.php";

$from = "Sandra Sender <[email protected]>";
$to = "Ramona Recipient <[email protected]>";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";

$Host = "smtp.gmail.com";
$port = "587";
$username = "[email protected]";
$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>");
 }
?>
372
skb
// Pear Mail Library
require_once "Mail.php";

$from = '<[email protected]>';
$to = '<[email protected]>';
$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' => '[email protected]',
        'password' => 'passwordxxx'
    ));

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

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

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('[email protected]' => 'ABC'))
  ->setTo(array('[email protected]'))
  ->setBody('This is a test mail.');

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

コードはTLS(SSL)を使用していないようです。TLS(SSL)は Googleにメールを配信する必要があります(ポート465または587を使用 )。

これを行うには、次を設定します

$Host = "ssl://smtp.gmail.com";

コードは、ホスト名スキームでssl://を参照する この例 のように疑わしく見えます。

54
crb

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

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

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

ユーザー名、パスワード、暗号化が必要なサーバーをサポートします。

要求データの内容を削除することなく、ヘッダーインジェクション攻撃から保護します。

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('[email protected]') // 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('[email protected]' => 'Sender Name')) // can be $_POST['email'] etc...
    ->setTo(array('[email protected]' => '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. :(';
}

これが役に立つことを願っています。ハッピーコーディング... :)

32
Madan Sapkota
<?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   = "[email protected]";  // GMAIL username
$mail->Password   = "password";            // GMAIL password

$mail->SetFrom('[email protected]', 'PRSPS');

//$mail->AddReplyTo("[email protected]', '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 = "[email protected]";
$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!";
}

?>
28
Deept Raghav

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

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));
20
Pekka 웃

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

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

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

14
s01ipsist

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 = "[email protected]";
//Password to use for SMTP authentication
$mail->Password = "yourpassword";
//Set who the message is to be sent from
$mail->setFrom('[email protected]', 'First Last');
//Set an alternative reply-to address
$mail->addReplyTo('[email protected]', 'First Last');
//Set who the message is to be sent to
$mail->addAddress('[email protected]', '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
Bhavin Solanki

Gmailはポート465を必要とします、そしてそれはphpmailerからのコードです:)

4
sandeep

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
4
Nahid

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

3
Strategist

私は "@ gmail.com"サフィックスを持っていないGSuiteアカウントのための解決策を持っています。また、@ gmail.comのGSuiteアカウントでもうまくいくと思いますが、試したことはありません。最初にあなたはあなたのGSuiteアカウントのためのオプション "allos¿w少ない安全なアプリ"を変更する特権を持つべきです。あなたが特権を持っているなら(あなたはアカウント設定 - >セキュリティをチェックインすることができます)それからあなたはページの最後に行き、より安全でないアプリケーションを許可するために "yes"に設定しますそれで全部です。これらのオプションを変更する権限がない場合、このスレッドに対する解決策は機能しません。 https://support.google.com/a/answer/6260879?hl=ja をチェックして、[許可を少なくする]オプションを変更します。