SendGrid
Anymail integrates with the Twilio SendGrid email service, using their Web API.
Warning
Unsupported since June 2025
Anymail’s SendGrid integration hasn’t been tested against the live SendGrid API since June 2025. As a result, SendGrid is no longer officially supported in django-anymail. See issue #432 for background and recommendations.
Although it will probably keep working, future bugs will likely be discovered in production, by users like you, and we won’t be able to verify proposed fixes.
To alert users to the change in support status, django-anymail 13.0.1 and later will issue warnings when SendGrid features are used. If you are comfortable using code that is no longer fully tested, you can disable these warnings by adding this to your settings.py:
SILENCED_SYSTEM_CHECKS = ["anymail.W003"]
import warnings
warnings.filterwarnings(
"ignore",
message="django-anymail has dropped official support for SendGrid",
)
Note
Troubleshooting: If your SendGrid messages aren’t being delivered as expected, be sure to look for “drop” events in your SendGrid activity feed.
SendGrid detects certain types of errors only after the send API call appears to succeed, and reports these errors as drop events.
Installation
Anymail optionally uses the cryptography package to validate SendGrid webhook
signatures. If you will use Anymail’s status tracking webhook
with SendGrid signature verification, be sure to include the [sendgrid] option
when you install Anymail:
$ python -m pip install 'django-anymail[sendgrid]'
(Or separately run python -m pip install cryptography.)
If you don’t plan to use SendGrid signature verification, cryptography
is not required. To avoid installing it, omit the [sendgrid] option.
See Status tracking webhooks below for details.
Changed in version 13.1: Added cryptography to the [sendgrid] extras.
Settings
EMAIL_BACKEND
To use Anymail’s SendGrid backend, set:
EMAIL_BACKEND = "anymail.backends.sendgrid.EmailBackend"
in your settings.py.
SENDGRID_API_KEY
A SendGrid API key with “Mail Send” permission. (Manage API keys in your SendGrid API key settings.) Required.
ANYMAIL = { ... "SENDGRID_API_KEY": "<your API key>", }
Anymail will also look for SENDGRID_API_KEY at the
root of the settings file if neither ANYMAIL["SENDGRID_API_KEY"]
nor ANYMAIL_SENDGRID_API_KEY is set.
SENDGRID_TRACKING_WEBHOOK_VERIFICATION_KEY
Optional additional public-key verification when using status tracking webhooks. See Status tracking webhooks below.
This should be set to the verification key provided in the Event Webhook page of SendGrid Mail Settings.
ANYMAIL = { ... "SENDGRID_TRACKING_WEBHOOK_VERIFICATION_KEY": "A8f746...9fuVqQ==", }
(Note this works only with SendGrid’s cryptographic signature verification, not their OAuth 2.0 option.)
SENDGRID_GENERATE_MESSAGE_ID
Whether Anymail should generate a UUID for each message sent through SendGrid,
to facilitate status tracking. The UUID is attached to the message as a
SendGrid custom arg named “anymail_id” and made available as
anymail_status.message_id
on the sent message.
Default True. You can set to False to disable this behavior, in which
case sent messages will have a message_id of None.
See Message-ID quirks below.
SENDGRID_MERGE_FIELD_FORMAT
If you use merge data with SendGrid’s legacy transactional templates,
set this to a str.format() formatting string that indicates how merge fields are
delimited in your legacy templates. For example, if your templates use the -field-
hyphen delimiters suggested in some SendGrid docs, you would set:
ANYMAIL = { ... "SENDGRID_MERGE_FIELD_FORMAT": "-{}-", }
The placeholder {} will become the merge field name. If you need to include
a literal brace character, double it up. (For example, Handlebars-style
{{field}} delimiters would take the format string "{{{{{}}}}}".)
The default None requires you include the delimiters directly in your
merge_data keys.
You can also override this setting for individual messages.
See the notes on SendGrid templates and merge
below.
This setting is not used (or necessary) with SendGrid’s newer dynamic transactional templates, which always use Handlebars syntax.
SENDGRID_API_URL
The base url for calling the SendGrid API.
The default is SENDGRID_API_URL = "https://api.sendgrid.com/v3/"
(It’s unlikely you would need to change this.)
esp_extra support
To use SendGrid features not directly supported by Anymail, you can
set a message’s esp_extra to
a dict of parameters for SendGrid’s v3 Mail Send API.
Your esp_extra dict will be deeply merged into the
parameters Anymail has constructed for the send, with esp_extra
having precedence in conflicts.
Anymail has special handling for esp_extra["personalizations"]. If that value
is a dict, Anymail will merge that personalizations dict into the personalizations
for each message recipient. (If you pass a list, that will override the
personalizations Anymail normally constructs from the message, and you will need to
specify each recipient in the personalizations list yourself.)
Example:
message.open_tracking = True message.esp_extra = { "asm": { # SendGrid subscription management "group_id": 1, "groups_to_display": [1, 2, 3], }, "tracking_settings": { "open_tracking": { # Anymail will automatically set `"enable": True` here, # based on message.open_tracking. "substitution_tag": "%%OPEN_TRACKING_PIXEL%%", }, }, # Because "personalizations" is a dict, Anymail will merge "future_feature" # into the SendGrid personalizations array for each message recipient "personalizations": { "future_feature": {"future": "data"}, }, }
(You can also set "esp_extra" in Anymail’s
global send defaults to apply it to all
messages.)
Limitations and quirks
- Message-ID
SendGrid does not return any sort of unique id from its send API call. Knowing a sent message’s ID can be important for later queries about the message’s status.
To work around this, Anymail generates a UUID for each outgoing message, provides it to SendGrid as a custom arg named “anymail_id” and makes it available as the message’s
anymail_status.message_idattribute after sending. The same UUID will be passed to Anymail’s tracking webhooks asevent.message_id.To disable attaching tracking UUIDs to sent messages, set
SENDGRID_GENERATE_MESSAGE_IDto False in your Anymail settings.Changed in version 6.0: In batch sends, Anymail generates a distinct anymail_id for each “to” recipient. (Previously, a single id was used for all batch recipients.) Check
anymail_status.recipients[to_email].message_idfor individual batch-send tracking ids.Changed in version 3.0: Previously, Anymail generated a custom Message-ID header for each sent message. But SendGrid’s “smtp-id” event field does not reliably reflect this header, which complicates status tracking. (For compatibility with messages sent in earlier versions, Anymail’s webhook
message_idwill fall back to “smtp-id” when “anymail_id” isn’t present.)- Invalid Addresses
SendGrid will accept and send just about anything as a message’s
from_email. (And email protocols are actually OK with that.)(Tested March, 2016)
- Non-ASCII text attachments may be garbled
SendGrid’s API ignores the character set used for text attachment content. It either strips the
charsetparameter from the Content-Type attachment header or arbitrarily changes it tocharset="iso-8859-1", even when some other charset is specified. This will display incorrectly or cause errors in many email clients.The behavior is unpredictable and may vary by SendGrid account or change over time. It has been reported to SendGrid repeatedly. You may be able to counteract the issue by enabling open and/or click tracking in your SendGrid account. The only way to completely avoid the problem is switching to a non-text attachment type (e.g., application/pdf) or limiting your text attachments to use only ASCII characters. See issue 150 for more information and other possible workarounds.
Changed in version 14.0: Anymail forces utf-8 encoding for text attachments and specifically includes that charset in the appropriate SendGrid API parameter. (Even with this change, SendGrid seems to ignore the charset and implement its own logic.)
- Non-ASCII attachment filenames will be garbled
SendGrid does not properly encode Unicode characters in attachment filenames. Some email clients will display those characters incorrectly. The only workaround is to limit attachment filenames to ASCII when sending through SendGrid.
- Arbitrary alternative parts allowed
SendGrid is one of the few ESPs that does support sending arbitrary alternative message parts (beyond just a single text/plain and text/html part).
- AMP for Email
SendGrid supports sending AMPHTML email content. To include it, use
message.attach_alternative("...AMPHTML content...", "text/x-amp-html")(and be sure to also include regular HTML and text bodies, too).- No envelope sender overrides
SendGrid does not support overriding
envelope_senderon individual messages.
Batch sending/merge and ESP templates
SendGrid offers both ESP stored templates and batch sending with per-recipient merge data.
SendGrid has two types of stored templates for transactional email:
Dynamic transactional templates, which were introduced in July, 2018, use Handlebars template syntax and allow complex logic to be coded in the template itself.
Legacy transactional templates, which allow only simple key-value substitution and don’t specify a particular template syntax.
[Legacy templates were originally just called “transactional templates,” and many older references still use this terminology. But confusingly, SendGrid’s dashboard and some recent articles now use “transactional templates” to mean the newer, dynamic templates.]
Changed in version 4.1: Added support for SendGrid dynamic transactional templates. (Earlier Anymail releases work only with SendGrid’s legacy transactional templates.)
You can use either type of SendGrid stored template by setting a message’s
template_id to the template’s unique id
(not its name). Supply the merge data values with Anymail’s normalized
merge_data and
merge_global_data message attributes.
message = EmailMessage( ... # omit subject and body (or set to None) to use template content to=["[email protected]", "Bob <[email protected]>"] ) message.template_id = "d-5a963add2ec84305813ff860db277d7a" # SendGrid dynamic id message.merge_data = { '[email protected]': {'name': "Alice", 'order_no': "12345"}, '[email protected]': {'name': "Bob", 'order_no': "54321"}, } message.merge_global_data = { 'ship_date': "May 15", }
When you supply per-recipient merge_data,
Anymail automatically changes how it communicates the “to” list to SendGrid, so that
each recipient sees only their own email address. (Anymail creates a separate
“personalization” for each recipient in the “to” list; any cc’s or bcc’s will be
duplicated for every to-recipient.)
See the SendGrid’s transactional template overview for more information.
Legacy transactional templates
With legacy transactional templates (only), SendGrid doesn’t have a pre-defined merge field syntax, so you must tell Anymail how substitution fields are delimited in your templates. There are three ways you can do this:
Set
'merge_field_format'in the message’sesp_extrato a pythonstr.format()string, as shown in the example below. (This applies only to that particular EmailMessage.)Or set
SENDGRID_MERGE_FIELD_FORMATin your Anymail settings. This is usually the best approach, and will apply to all legacy template messages sent through SendGrid. (You can still use esp_extra to override for individual messages.)Or include the field delimiters directly in all your
merge_dataandmerge_global_datakeys. E.g.:{'-name-': "Alice", '-order_no-': "12345"}. (This can be error-prone, and makes it difficult to transition to other ESPs or to SendGrid’s dynamic templates.)# ... message.template_id = "5997fcf6-2b9f-484d-acd5-7e9a99f0dc1f" # SendGrid legacy id message.merge_data = { '[email protected]': {'name': "Alice", 'order_no': "12345"}, '[email protected]': {'name': "Bob", 'order_no': "54321"}, } message.esp_extra = { # Tell Anymail this SendGrid legacy template uses "-field-" for merge fields. # (You could instead set SENDGRID_MERGE_FIELD_FORMAT in your ANYMAIL settings.) 'merge_field_format': "-{}-" }
SendGrid legacy templates allow you to mix your EmailMessage’s subject and body
with the template subject and body (by using <%subject%> and <%body%> in
your SendGrid template definition where you want the message-specific versions
to appear). If you don’t want to supply any additional subject or body content
from your Django app, set those EmailMessage attributes to empty strings or None.
On-the-fly templates
Rather than define a stored ESP template, you can refer to merge fields directly in an EmailMessage’s subject and body, and SendGrid will treat this as an on-the-fly, legacy-style template definition. (The on-the-fly template can’t contain any dynamic template logic, and like any legacy template you must specify the merge field format in either Anymail settings or esp_extra as described above.)
# on-the-fly template using merge fields in subject and body: message = EmailMessage( subject="Your order {{order_no}} has shipped", body="Dear {{name}}:\nWe've shipped order {{order_no}}.", to=["[email protected]", "Bob <[email protected]>"] ) # note: no template_id specified message.merge_data = { '[email protected]': {'name': "Alice", 'order_no': "12345"}, '[email protected]': {'name': "Bob", 'order_no': "54321"}, } message.esp_extra = { # here's how to get Handlebars-style {{merge}} fields with Python's str.format: 'merge_field_format': "{{{{{}}}}}" # "{{ {{ {} }} }}" without the spaces }
Status tracking webhooks
Anymail’s normalized status tracking works with SendGrid’s webhooks.
SendGrid optionally provides webhook signature verification. You have three choices for securing the status tracking webhook:
Use SendGrid’s signature verification: follow their Event Webhook Security Features documentation and set
SENDGRID_TRACKING_WEBHOOK_VERIFICATION_KEY(requires the cryptography package—see Installation)Use Anymail’s shared secret validation, by setting
WEBHOOK_SECRET(does not require cryptography)Use both
Signature verification is recommended, unless you do not want to add cryptography to your dependencies.
Changed in version 13.1: Added support for SendGrid webhook signature verification. (Earlier releases supported only shared secret validation.)
To configure Anymail status tracking for SendGrid, enter one of these urls in your SendGrid mail settings under “Event Notification” (substituting your Django site for yoursite.example.com):
If you are not using Anymail’s shared webhook secret:
https://yoursite.example.com/anymail/sendgrid/tracking/Or if you are using Anymail’s
WEBHOOK_SECRET, include the random:random shared secret in the URL:https://random:random@yoursite.example.com/sendgrid/tracking/
Be sure to check the boxes in the SendGrid settings for the event types you want to receive.
SendGrid will report these Anymail event_types:
queued, rejected, bounced, deferred, delivered, opened, clicked, complained, unsubscribed,
subscribed.
The event’s esp_event field will be
a dict of SendGrid event fields, for a single event. (Although SendGrid calls
webhooks with batches of events, Anymail will invoke your signal receiver separately
for each event in the batch.)
Inbound webhook
If you want to receive email from SendGrid through Anymail’s normalized inbound handling, follow SendGrid’s Inbound Parse Webhook guide to set up Anymail’s inbound webhook.
The Destination URL setting will be:
https://random:random@yoursite.example.com/anymail/sendgrid/inbound/
random:random is an
ANYMAIL_WEBHOOK_SECRETshared secretyoursite.example.com is your Django site
(Anymail does not currently support signature verification for the inbound parse webhook.)
You should enable SendGrid’s “POST the raw, full MIME message” checkbox (see note below).
And be sure the URL has a trailing slash. (SendGrid’s inbound processing won’t follow Django’s
APPEND_SLASH redirect.)
If you want to use Anymail’s normalized spam_detected and
spam_score attributes, be sure to enable the “Check
incoming emails for spam” checkbox.
Note
Anymail supports either option for SendGrid’s “POST the raw, full MIME message” checkbox, but enabling this setting is preferred to get the most accurate representation of any received email. Using raw MIME also avoids a limitation in Django’s multipart/form-data handling that can strip attachments with certain filenames.
Changed in version 8.6: Leaving SendGrid’s “full MIME” checkbox disabled is no longer recommended.