Matt Makai | @mattmakai | makaimc on GitHub | Twilio Developer Evangelist
Arin Sime | @arinsime | asime on GitHub | AgilityFeat Founder & CEO
import sendgrid sg = sendgrid.SendGridClient( 'YOUR_SENDGRID_USERNAME', 'YOUR_SENDGRID_PASSWORD') message = sendgrid.Mail( to='john@email.com', subject='Example', html='Body', text='Body', from_email='doe@email.com') message.add_to('Example Dude') status, msg = sg.send(message)