Skip to content

Instantly share code, notes, and snippets.

@eduardo-matos
Forked from tjlytle/gist:1293424
Created November 8, 2012 18:43
Show Gist options
  • Save eduardo-matos/4040675 to your computer and use it in GitHub Desktop.
Save eduardo-matos/4040675 to your computer and use it in GitHub Desktop.
SendGrid Configuration for Zend Framework
<?php
$config = array(
'username' => 'sendgridusername',
'password' => 'sendgridpassword',
'auth' => 'plain'
);
$transport = new Zend_Mail_Transport_Smtp('smtp.sendgrid.net', $config);
$mail = new Zend_Mail();
$mail->setFrom('you@example.com', 'Your Name');
$mail->setSubject('Email Test');
$mail->setBodyHtml('<p>Test</p>');
$mail->send($transport);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment