I'm trying to send mails via sendgrid, here my code :

// Setup Swift mailer parameters
        $transport = Swift_SmtpTransport::newInstance('smtp.sendgrid.net', 25);
        $transport->setUsername($username);
        $transport->setPassword($password);
        $swift = Swift_Mailer::newInstance($transport);

        // Create a message (subject)
        $message = new Swift_Message($subject);

        // attach the body of the email
        $message->setFrom($from);
        $message->setBody($html, 'text/html');
        $message->setTo($to);
        $message->addPart($text, 'text/plain');

        // send message
        if ($recipients = $swift->send($message, $failures))
        {              
          // This will let us know how many users received this message
          echo 'Message sent out to '.$recipients.' users';exit;
        }

I got this error : Swift_TransportException

Expected response code 250 but got code "", with message ""

...\swiftMailer\lib\classes\Swift\Transport\AbstractSmtpTransport.php(422)

please help me !

link|improve this question
2  
Please contact the vendor of the library for support questions. – hakre Jan 4 at 10:35
feedback

3 Answers

up vote 0 down vote accepted

Try to send the message in one line to see if that works or returns another error. If it returns an error, it's probably a server or authentication issue.

$result = $swift->send($message);

If that works, you could try the code below and if it works tweak it so it shows your recipients instead of failures.

if (!$swift->send($message, $failures))
{
  echo "Failures:";
  print_r($failures);
}

Other than that, check if all variables are not empty.

For more examples see: http://swiftmailer.org/docs/sending.html#quick-reference-for-sending-a-message

UPDATE

Sendmail code:

//Create the Transport
$transport = Swift_MailTransport::newInstance();

//Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);

//Create a message
$message = Swift_Message::newInstance('Subject')
  ->setFrom(array('john@doe.com' => 'John Doe'))
  ->setTo(array('receiver@domain.org', 'other@domain.org' => 'A name'))
  ->setBody('Here is the message itself')
  ;

//Send the message
$numSent = $mailer->send($message);

printf("Sent %d messages\n", $numSent);
link|improve this answer
thanks for help, but it doesn't work :( may be some config parameters aren't ok ? – BKF Jan 4 at 10:55
Did you get another error or the same one? Your code looks fine, perhaps you should try the sendmail function first to see if it's a server issue. I'll update my post with the code. – mat Jan 4 at 11:11
It works by this code : $transport = Swift_MailTransport::newInstance(); but I don't receive any mail ! it means ?? – BKF Jan 4 at 12:13
It probably means that smtp.sendgrid.net isn't supported on your server (external hosts) and mail() for some reason isn't delivered. Does it work to just send mail like this: mail("yourmail@mail.com", "A subject", "A message", "FROM: noreply@mail.com"); – mat Jan 4 at 12:22
yes it works by the function mail ! – BKF Jan 4 at 13:00
show 2 more comments
feedback

(full disclosure: I work at SendGrid as a web developer)

We recently released a new PHP library which may solve some of these problems. We still use Swift but if I recall, the library sets that stuff up for you now, making it a little easier to get rolling.

Don't hesitate to contact us for help, too!

http://github.com/sendgrid/sendgrid-php

link|improve this answer
feedback

I'm just having the same error message with my Symfony 2 config for sendgrid. Hope you've seen this manual: http://docs.sendgrid.com/documentation/get-started/integrate/examples/symfony-example-using-smtp/

Try changing port to 587. Let me know it works.

link|improve this answer
smtp.sendgrid.net isn't supported on my server (external hosts) – BKF Jan 4 at 15:41
feedback

Your Answer

 
or
required, but never shown

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