एक PHP पृष्ठ से GMail SMTP सर्वर का उपयोग कर ईमेल भेजें


389

मैं एक PHP पृष्ठ से GMail के SMTP सर्वर के माध्यम से एक ईमेल भेजने की कोशिश कर रहा हूं, लेकिन मुझे यह त्रुटि मिली:

प्रमाणीकरण विफलता [SMTP: SMTP सर्वर कोई समर्थन प्रमाणीकरण नहीं करता है (कोड: 250, प्रतिक्रिया: mx.google.com आपकी सेवा में, [98.117.99.235] SIZE 35651584 8BITMIME STARTTLS ENHANCEDDUSCODES 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?? मुझे यह फ़ाइल कहाँ से मिलेगी?
ज़ैन शेख

18
क्या कोई मुझे एक लिंक दे सकता है जहाँ मुझे Mail.php फ़ाइल मिल सकती है। क्योंकि मैंने इसे आज़माया और यह काम नहीं करेगा धन्यवाद
योसुफ

11
ऊपर इस उदाहरण में @ चिह्न कहाँ हैं? मुझे वहाँ एक भी नहीं दिख रहा है!
DarkAsPitch

6
मेरा मानना ​​है कि myaccount.gmail.com ईमेल मानकों में myaccount@gmail.com के समान है।
शेरविन फ्लाइट

3
यदि आपके पास सर्वर निर्दिष्ट है तो आपको @gmail को शामिल करने की आवश्यकता नहीं है। केवल myaccountउपयोगकर्ता नाम के लिए टाइप करें ।
जैक

106

स्विफ्ट मेलर का उपयोग करना , जीमेल क्रेडेंशियल्स के माध्यम से एक मेल भेजना काफी आसान है:

<?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, और क्लासीफाइड और एड्रेस को बदलने का काम करता है। मेरे लिए कोई और उपाय काम नहीं आया। धन्यवाद।
मार्को म्यूसिनो

7
मैं सहमत हूँ, स्विफ्ट मेलर मेल समाधान में एक बूंद है जो नाशपाती के साथ खिलवाड़ करने की तुलना में बहुत आसान है। PHP के php_openssl एक्सटेंशन को एनेबल करना न भूलें।
सोथ

1
SwiftMailer का उपयोग करके अच्छा समाधान! +1
अमल मुरली

1
arrrgh। प्रतिष्ठित काम करने के लिए स्विफ्टमेलर मिलता है। मुझे नहीं पता कि उस "संगीतकार" का उपयोग कैसे किया जाए, इसलिए मैंने बस स्विफ्टमेलर जिप को जीथब से डाउनलोड किया, फिर मैंने ओपन_एसएल को सक्षम किया, फिर अपने जीमेल ईमेल और पासवर्ड की आपूर्ति की, लेकिन यह अभी भी काम नहीं किया।
boi_echos

3
मेरी मूर्खता के लिए खेद है। आपको अपना gmail खाता खोलना होगा क्योंकि एक ईमेल है जो आपको "कम सुरक्षित ऐप" को सक्षम करने के लिए कह रहा है। उसके बाद अब वह काम कर रहा है
boi_echos

54

आपका कोड TLS (SSL) का उपयोग नहीं करता है, जो Google को मेल वितरित करना आवश्यक है (और पोर्ट 465 या 587 का उपयोग करके)

आप सेटिंग करके ऐसा कर सकते हैं

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

आपका कोड संदिग्ध रूप से इस उदाहरण की तरह दिखता है जो होस्टनाम स्कीम में ssl: // को संदर्भित करता है।


33

मैं नाशपाती मेल की सिफारिश नहीं है। इसे 2010 से अपडेट नहीं किया गया है। स्रोत फ़ाइलों को भी पढ़ें; स्रोत कोड लगभग पुराना है, जिसे PHP 4 शैली में लिखा गया है और कई त्रुटियां / कीड़े पोस्ट किए गए हैं (यह Google)। मैं स्विफ्ट मेलर का उपयोग कर रहा हूं।

स्विफ्ट मेलर PHP 5 में लिखे गए किसी भी वेब एप्लिकेशन में एकीकृत करता है, जो कई विशेषताओं के साथ ईमेल भेजने के लिए एक लचीला और सुरुचिपूर्ण वस्तु-उन्मुख दृष्टिकोण पेश करता है।

SMTP, Sendmail, postfix या अपने खुद के एक कस्टम ट्रांसपोर्ट कार्यान्वयन का उपयोग करके ईमेल भेजें।

समर्थन सर्वर जिन्हें उपयोगकर्ता नाम और पासवर्ड और / या एन्क्रिप्शन की आवश्यकता होती है।

डेटा सामग्री का अनुरोध किए बिना हेडर इंजेक्शन हमलों से सुरक्षित रखें।

MIME कंप्लेंट HTML / मल्टीपार्ट ईमेल भेजें।

लायब्रेरी को अनुकूलित करने के लिए इवेंट-संचालित प्लगइन्स का उपयोग करें।

कम मेमोरी के उपयोग के साथ बड़े अटैचमेंट और इनलाइन / एम्बेडेड इमेज को हैंडल करें।

यह एक स्वतंत्र और खुला स्रोत है जिसे आप स्विफ्ट मेलर डाउनलोड कर सकते हैं और अपने सर्वर पर अपलोड कर सकते हैं। (सुविधा सूची स्वामी वेबसाइट से कॉपी की गई है)।

जीमेल एसएसएल / एसएमटीपी और स्विफ्ट मेलर का काम करने का उदाहरण यहां है ...

// 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 उपयोगकर्ता नाम और पासवर्ड स्वीकार नहीं किया जाता है" वापसी संदेश मिलता है। मेरी साख ठीक है और मैंने "कम-सुरक्षित ऐप्स को अनुमति दें" को चालू कर दिया है। किसी को यह करने के लिए एक तय पता है?
एंड्रयू बी

स्विफ्ट PHP में काम करने के लिए प्रतीत नहीं होता है। coalesce - बस चल रही है।
हेरिमनकोडर

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

?>

आप मेजबान को दो बार क्यों सेट करते हैं और कौन सा सही है?
एमिल बर्जरॉन

मुझे class.phpmailer.php फ़ाइल कहाँ मिलती है ?? कोडिंग कोड केवल इतना उपयोगी नहीं है pls कोड पर अधिक विवरण भी शामिल करें!
नवंबर को जिनेकोड

जबकि कुछ वाक्य रचना पुरानी है, PHPMailer ने मेरे लिए सबसे अच्छा समाधान समाप्त किया, +1
zoltar

20

SwiftMailer बाहरी सर्वर का उपयोग करके ई-मेल भेज सकता है।

यहाँ एक उदाहरण है जो दिखाता है कि जीमेल सर्वर का उपयोग कैसे किया जाता है:

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

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

Ubuntu में PEAR के Mail.php को स्थापित करने के लिए, कमांड के सेट को चलाएं:

    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 खातों के लिए एक समाधान है जिसमें "@ gmail.com" उपसर्ग नहीं है। इसके अलावा, मुझे लगता है कि यह @ gmail.com के साथ GSuite खातों के लिए काम करेगा लेकिन havent ने इसकी कोशिश की। पहले आपके पास अपने GSuite खाते के लिए "allos lessw less safe app" विकल्प बदलने के लिए विशेषाधिकार होना चाहिए। यदि आपके पास विशेषाधिकार हैं (आप खाता सेटिंग-> सुरक्षा में जांच कर सकते हैं) तो आपको "दो कदम कारक प्रमाणीकरण" को निष्क्रिय करना होगा पृष्ठ के अंत में जाएं और कम सुरक्षित अनुप्रयोगों की अनुमति के लिए "हां" पर सेट करें। बस इतना ही। यदि आपके पास उन विकल्पों को बदलने के लिए विशेषाधिकार नहीं हैं, तो इस धागे का समाधान काम नहीं करेगा। चेक https://support.google.com/a/answer/6260879?hl=en में परिवर्तन करने का विकल्प "कम ... अनुमति देते हैं"।


0

मैंने @ क्षी कंठ द्वारा प्रस्तुत सुझाव की कोशिश की, लेकिन यह कारगर नहीं हुआ। मैं प्रलेखन पढ़ता हूं और कुछ बदलाव किए गए हैं। इसलिए मैं इस कोड का उपयोग करके जीमेल के माध्यम से मेल भेजने में कामयाब रहा, जहां विक्रेता / ऑटोलैड. एफपी संगीतकार द्वारा प्राप्त किया जाता है, संगीतकार के साथ "स्विफ्टमेलर / स्विफ्टमेलर: ^ 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);
    ?>

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.