This library allows you to quickly and easily use the Twilio SendGrid Web API v3 via Python.
NEW:
- Subscribe to email notifications for releases and breaking changes.
- Version 6.X release is a BREAKING CHANGE from version 5.X, please see the release notes for details.
- Quickly get started with Docker.
- Send SMS messages with Twilio.
This library provides full support for all Twilio SendGrid Web API v3 endpoints, including v3 /mail/send.
We want this library to be community driven and Twilio SendGrid led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create issues and pull requests or simply upvote or comment on existing issues or pull requests.
Please browse the rest of this README for further detail.
We appreciate your continued support, thank you!
- Installation
- Quick Start
- Common Use Cases
- General Usage
- Processing Inbound Email
- Announcements
- Roadmap
- How to Contribute
- Troubleshooting
- About
- License
- Python version 2.7 and 3.4+
- For email, you will need a Twilio SendGrid account, starting at the free level
- For SMS messages, you will need a free Twilio account
Update the development environment with your SENDGRID_API_KEY (more info here), for example:
echo "export SENDGRID_API_KEY='YOUR_API_KEY'" > sendgrid.env
echo "sendgrid.env" >> .gitignore
source ./sendgrid.env
Twilio SendGrid also supports local environment file .env
.
Copy or rename .env_sample
into .env
and update SENDGRID_API_KEY with your key.
Temporarily set the environment variable (accessible only during the current CLI session):
set SENDGRID_API_KEY=YOUR_API_KEY
Permanently set the environment variable (accessible in all subsequent CLI sessions):
setx SENDGRID_API_KEY "YOUR_API_KEY"
pip install sendgrid
The following is the minimum needed code to send an email with the /mail/send Helper (here is a full example):
import os
from sendgrid import SendGridAPIClient
from sendgrid.helpers.mail import Mail
message = Mail(
from_email='[email protected]',
to_emails='[email protected]',
subject='Sending with Twilio SendGrid is Fun',
html_content='<strong>and easy to do anywhere, even with Python</strong>')
try:
sg = SendGridAPIClient(os.environ.get('SENDGRID_API_KEY'))
response = sg.send(message)
print(response.status_code)
print(response.body)
print(response.headers)
except Exception as e:
print(e.message)
The Mail
constructor creates a personalization object for you.
Here is an example of how to add it.
The following is the minimum needed code to send an email without the /mail/send Helper (here is a full example):
import os
from sendgrid import SendGridAPIClient
message = {
'personalizations': [
{
'to': [
{
'email': '[email protected]'
}
],
'subject': 'Sending with Twilio SendGrid is Fun'
}
],
'from': {
'email': '[email protected]'
},
'content': [
{
'type': 'text/plain',
'value': 'and easy to do anywhere, even with Python'
}
]
}
try:
sg = SendGridAPIClient(os.environ.get('SENDGRID_API_KEY'))
response = sg.send(message)
print(response.status_code)
print(response.body)
print(response.headers)
except Exception as e:
print(e.message)
General v3 Web API Usage (With Fluent Interface)
import os
from sendgrid import SendGridAPIClient
sg = SendGridAPIClient(os.environ.get('SENDGRID_API_KEY'))
response = sg.client.suppression.bounces.get()
print(response.status_code)
print(response.body)
print(response.headers)
General v3 Web API Usage (Without Fluent Interface)
import os
from sendgrid import SendGridAPIClient
sg = SendGridAPIClient(os.environ.get('SENDGRID_API_KEY'))
response = sg.client._('suppression/bounces').get()
print(response.status_code)
print(response.body)
print(response.headers)
Please see our helper for utilizing our Inbound Parse webhook.
- Twilio SendGrid Documentation
- Library Usage Documentation
- Example Code
- How-to: Migration from v2 to v3
- v3 Web API Mail Send Helper - build a request object payload for a v3 /mail/send API call.
- Processing Inbound Email
Examples of common API use cases, such as how to send an email with a transactional template or add an attachment or send an SMS message.
Join an experienced and passionate team that focuses on making an impact. Opportunities abound to grow the product - and grow your career!
All updates to this library are documented in our CHANGELOG and releases. You may also subscribe to email release notifications for releases and breaking changes.
If you are interested in the future direction of this project, please take a look at our open issues and pull requests. We would love to hear your feedback.
We encourage contribution to our libraries (you might even score some nifty swag), please see our CONTRIBUTING guide for details.
Quick links:
- Feature Request
- Bug Reports
- Improvements to the Codebase
- Review Pull Requests
- Sign the CLA to Create a Pull Request
Please see our troubleshooting guide for common library issues.
sendgrid-python is guided and supported by the Twilio Developer Experience Team.
Email the Developer Experience Team here in case of any queries.
sendgrid-python is maintained and funded by Twilio SendGrid, Inc. The names and logos for sendgrid-python are trademarks of Twilio SendGrid, Inc.