Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to send an email via GMail's SMTP server from a PHP page but I get this error:

authentication failure [SMTP: SMTP server does no support authentication (code: 250, response: mx.google.com at your service, [98.117.99.235] SIZE 35651584 8BITMIME STARTTLS ENHANCEDSTATUSCODES PIPELINING)]

share|improve this question

10 Answers

up vote 150 down vote accepted
<?php
    require_once "Mail.php";

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

    $host     = "ssl://smtp.gmail.com";
    $port     = "465";
    $username = "myaccount@gmail.com";  //<> give errors
    $password = "password";

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

?>  <!-- end of php tag-->

This is working code so please use it.

share|improve this answer
49  
what is Mail.php?? where do I get this file from? – Zain Shaikh Nov 26 '10 at 23:23
47  
He's using the Pear Mail package. – Xavi Dec 14 '10 at 1:19
8  
could anyone please give me a link where I can get the Mail.php file. Because I tried it and it would not work Thanks – Yoosuf Apr 17 '11 at 6:52
8  
Where are the @ symbols in this example above? I do not see a single one in there! – darkAsPitch Jun 30 '11 at 4:08
4  
I believe that myaccount.gmail.com is the same as myaccount@gmail.com in the email standards. – Sherwin Flight Oct 14 '11 at 9:02
show 7 more comments

Your code does not appear to be using TLS (SSL), which is necessary to deliver mail to Google (and using ports 465 or 587).

You can do this by setting

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

Your code looks suspiciously like this example which refers to ssl:// in the hostname scheme.

share|improve this answer

pavan kumar's answer is correct with one issue:

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

$host = "ssl://smtp.gmail.com";
$port = "465";
$username = "<myaccount.gmail.com>";
$password = "password";

This bit: $username = "<myaccount.gmail.com>"; doesn't need the <> like you do in the $from and $to fields. And won't work if they are there. Hopefully this helps someone.

share|improve this answer
I had to remove the <> as well as make the username user@domain.com (google app domain) as user.domain.com didn't work. – Usman Zaheer Apr 27 '12 at 11:27

Using Swift mailer, it is quite easy to send a mail through Gmail credentials:

<?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);
?>
share|improve this answer
1  
This worked "to the first" just changing the GMAIL_USERNAME, GMAIL_PASSWORD, and the From and To addresses. No other solution worked for me. Thanks. – Pispirulito May 14 at 18:08
1  
I agree, swift mailer is a drop in mail solution that much easier than messing with pear. Don't forget to enable PHP's php_openssl extension. – Soth May 30 at 4:02

SwiftMailer can send E-Mail using external servers.

Here is an example that shows how to use a GMail server.

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));
share|improve this answer

The code as listed in the question needs two changes

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

Port 465 is required for an SSL connection.

share|improve this answer
<?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!";
}

?>
share|improve this answer

gmail require port 465 and also its the code from phpmailer :)

share|improve this answer

Set

'auth' => false,

Also, see if port 25 works.

share|improve this answer
1  
It won't - Google requires delivery on 465 or 587. See mail.google.com/support/bin/answer.py?hl=en&answer=13287. – crb Apr 3 '09 at 3:11

This post explains you how to “Sending Mail using SMTP and PHP” using SMTP credentials. In this post will show you how to send email using Gmail’s SMTP server.

share|improve this answer
Both the links are same. – Jigar Jan 10 at 6:33
sry..now changed – midhun pottmmal Jan 10 at 8:22

protected by Bill the Lizard Aug 30 '10 at 11:14

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.