ส่งอีเมลโดยใช้เซิร์ฟเวอร์ GMail SMTP จากหน้า PHP


389

ฉันพยายามส่งอีเมลผ่านเซิร์ฟเวอร์ SMTP ของ GMail จากหน้า PHP แต่ฉันได้รับข้อผิดพลาดนี้:

การรับรองความถูกต้องล้มเหลว [เซิร์ฟเวอร์ SMTP: SMTP ไม่รองรับการตรวจสอบสิทธิ์ (รหัส: 250 การตอบสนอง: mx.google.com ที่บริการของคุณ [98.117.99.235] ขนาด 35651584 8BITMIME STARTTLS ENHANCEDSTATUSCODES PIPELINING)]

ใครช่วยได้บ้าง นี่คือรหัสของฉัน:

<?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
สัญลักษณ์ @ ในตัวอย่างนี้ด้านบนอยู่ที่ไหน ฉันไม่เห็นคนเดียวในนั้น!
darkAsPitch

6
ฉันเชื่อว่า myaccount.gmail.com เหมือนกับ myaccount@gmail.com ในมาตรฐานอีเมล
Sherwin Flight

3
คุณไม่จำเป็นต้องใส่ @gmail หากคุณระบุเซิร์ฟเวอร์ไว้ เพียงพิมพ์myaccountชื่อผู้ใช้
แจ็ค

106

การใช้Swift mailerนั้นค่อนข้างง่ายในการส่งจดหมายผ่านข้อมูลรับรอง 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 และที่อยู่จากและเป็น ไม่มีวิธีอื่นที่เหมาะกับฉัน ขอบคุณ
Marco Muciño

7
ฉันเห็นด้วยว่าจดหมายด่วนเป็นวิธีแก้ปัญหาเมลที่ง่ายกว่ายุ่งกับลูกแพร์ อย่าลืมเปิดใช้งานส่วนขยาย php_openssl ของ PHP
Soth

1
ทางออกที่ดีโดยใช้ SwiftMailer! +1
Amal Murali

1
arrrgh icant รับ swiftmailer เพื่อทำงาน ฉันไม่รู้วิธีใช้ "ผู้แต่ง" ดังนั้นฉันเพิ่งดาวน์โหลด zip swiftmailer จาก github จากนั้นฉันเปิดใช้งาน open_ssl จากนั้นให้อีเมลและรหัสผ่าน gmail ของฉัน แต่มันก็ยังใช้งานไม่ได้
boi_echos

3
อาขอโทษสำหรับความโง่เขลาของฉัน คุณต้องเปิดบัญชี gmail ของคุณเพราะมีอีเมลบอกให้คุณเปิดใช้งาน "แอพที่ปลอดภัยน้อยกว่า" ดังนั้นตอนนี้มันทำงานแล้ว heheh
boi_echos

54

รหัสของคุณไม่ปรากฏจะใช้ TLS (SSL) ซึ่งเป็นสิ่งจำเป็นที่จะส่งอีเมลไปยัง Google (และใช้พอร์ต 465 หรือ 587)

คุณสามารถทำได้โดยการตั้งค่า

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

รหัสของคุณดูน่าสงสัยเหมือนตัวอย่างนี้ซึ่งอ้างถึง ssl: // ในรูปแบบชื่อโฮสต์


33

ฉันไม่แนะนำ Pear Mail ไม่ได้รับการปรับปรุงตั้งแต่ปี 2010 อ่านไฟล์ต้นฉบับเช่นกัน ซอร์สโค้ดเกือบล้าสมัยเขียนในสไตล์ PHP 4 และมีการโพสต์ข้อผิดพลาด / ข้อบกพร่องจำนวนมาก (Google it) ฉันใช้ Swift Mailer

Swift Mailerรวมเข้ากับแอปพลิเคชันเว็บใด ๆ ที่เขียนด้วย PHP 5 นำเสนอวิธีการเชิงวัตถุที่ยืดหยุ่นและสง่างามในการส่งอีเมลด้วยคุณสมบัติที่หลากหลาย

ส่งอีเมลโดยใช้ SMTP, sendmail, postfix หรือการใช้งาน Transport แบบกำหนดเองของคุณเอง

สนับสนุนเซิร์ฟเวอร์ที่ต้องการชื่อผู้ใช้และรหัสผ่านและ / หรือการเข้ารหัส

ป้องกันจากการโจมตีของการฉีดหัวโดยไม่ต้องลอกเนื้อหาข้อมูลร้องขอ

ส่งอีเมล HTML / multipart ที่สอดคล้องกับ MIME

ใช้ปลั๊กอินที่ควบคุมโดยเหตุการณ์เพื่อปรับแต่งไลบรารี

จัดการกับไฟล์แนบขนาดใหญ่และรูปภาพอินไลน์ / ฝังตัวด้วยการใช้หน่วยความจำต่ำ

เป็นแหล่งเปิดฟรีที่คุณสามารถดาวน์โหลด Swift Mailerและอัปโหลดไปยังเซิร์ฟเวอร์ของคุณ (รายการคุณสมบัติถูกคัดลอกจากเว็บไซต์ของเจ้าของ)

ตัวอย่างการทำงานของ 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 ชื่อผู้ใช้และรหัสผ่านไม่ได้รับการยอมรับ" ข้อมูลรับรองของฉันใช้ได้และฉันได้ตั้งค่า "อนุญาตแอปที่มีความปลอดภัยน้อย" เป็น ON ใครรู้การแก้ไขนี้
AndrewB

Swift ดูเหมือนจะไม่ทำงานใน PHP 5.x - ไม่เข้าใจใช่ไหม รวมตัวกัน - เพิ่งระเบิด
HerrimanCoder

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

?>

ทำไมคุณถึงตั้งโฮสต์สองครั้งและอันไหนที่เหมาะสม
Emile Bergeron

ฉันจะรับไฟล์ class.phpmailer.php ได้ที่ไหน การวางโค้ดเพียงอย่างเดียวก็ไม่ได้มีประโยชน์อะไรเลยกรุณารวมคำอธิบายเพิ่มเติมในโค้ดด้วย!
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

รหัสตามที่ระบุไว้ในคำถามต้องการการเปลี่ยนแปลงสองอย่าง

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

จำเป็นต้องมีพอร์ต 465 สำหรับการเชื่อมต่อ SSL


6

ส่งจดหมายโดยใช้ห้องสมุด phpMailer ผ่าน Gmail โปรดโหลดไฟล์ไลบรารีจาก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

หากต้องการติดตั้ง Mail.php ของ PEAR ใน 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

ฉันมีทางออกสำหรับบัญชี GSuite ที่ไม่มี sufix "@ gmail.com" ฉันคิดว่ามันจะใช้งานได้กับบัญชี GSuite ด้วย @ gmail.com แต่ก็ไม่ได้ลอง ก่อนอื่นคุณควรมีสิทธิ์เปลี่ยนตัวเลือก "แอพที่ปลอดภัยน้อยกว่าแอพ" สำหรับบัญชี GSuite ของคุณ หากคุณมีสิทธิ์ (คุณสามารถเช็คอินการตั้งค่าบัญชี -> ความปลอดภัย) จากนั้นคุณต้องปิดการใช้งาน "การตรวจสอบสิทธิ์แบบสองขั้นตอน" ไปที่ท้ายหน้าและตั้งค่าเป็น "ใช่" เพื่ออนุญาตแอปพลิเคชันที่ปลอดภัยน้อยลง นั่นคือทั้งหมดที่ หากคุณไม่มีสิทธิ์ในการเปลี่ยนตัวเลือกเหล่านี้โซลูชันสำหรับเธรดนี้จะไม่ทำงาน ทำเครื่องหมายที่https://support.google.com/a/answer/6260879?hl=thเพื่อทำการเปลี่ยนแปลงตัวเลือก "อนุญาตให้น้อยลง ... "


0

ฉันลองคำแนะนำที่เสนอโดย @shasi kanth แต่ไม่ได้ผล ฉันอ่านเอกสารและมีการเปลี่ยนแปลงเล็กน้อย ดังนั้นฉันจึงสามารถส่งอีเมลผ่าน Gmail โดยใช้รหัสนี้โดยที่ผู้ขาย / autoload.php ได้รับโดยผู้แต่งเพลงที่มีผู้แต่งต้องการ "swiftmailer / swiftmailer: ^ 6.0":

<?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=en&answer=13287
crb
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.