Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

How to Send an Email with Dynamic Templates



Before you begin

before-you-begin page anchor

Before you create and send an email using a dynamic template, you need to do the following:

  • Create a SendGrid account
  • Create an API Key
  • Add an unsubscribe group (optional)
(information)

Info

If you prefer to use your own templating system, you can still insert dynamic data using Substitution Tags.


Design a dynamic template

design-a-dynamic-template page anchor
  1. Open the Dynamic Templates(link takes you to an external page) page and click Create Template .
  2. Add a unique template name and then click Save .
  3. To begin editing your new template, click Add Version .
  4. Select an editor and click Continue .
  5. Design your template. For more information on using Handlebars, see Using Handlebars .
  6. Set the template to Active to enable sending.
(information)

Info

After designing your template, it is crucial to set it to Active in order to use it for sending emails. Find the editor template and click Make Active.

Dynamic Template ID.

Unsubscribe modules for dynamic templates

unsubscribe-modules-for-dynamic-templates page anchor

If you want to create a static unsubscribe module for a dynamic template, you can copy the contents of an unsubscribe module into a text module and then replace the sender name and address substitution tags with the desired information or handlebars syntax as shown below.

For sample templates that include examples of receipts, password resets, account activations, newsletters, and sale notifications, check out the dynamic-template section of our email template's GitHub repo(link takes you to an external page).

The cURL calls on this page use the receipt example template(link takes you to an external page).

(error)

Danger

To send mail using Dynamic Templates, you must use the Web API mail.send. SMTP sends do not support Dynamic Templates.


Send a transactional email

send-a-transactional-email page anchor

To send a dynamic transactional email:

In order to send a dynamic transactional email using cURL, set your call up to look something like this:


_45
curl -X "POST" "https://api.sendgrid.com/v3/mail/send" \
_45
-H 'Authorization: Bearer <<YOUR_API_KEY>>' \
_45
-H 'Content-Type: application/json' \
_45
-d '{
_45
"from":{
_45
"email":"example@.sendgrid.net"
_45
},
_45
"personalizations":[
_45
{
_45
"to":[
_45
{
_45
"email":"example@sendgrid.net"
_45
}
_45
],
_45
"dynamic_template_data":{
_45
"total":"$ 239.85",
_45
"items":[
_45
{
_45
"text":"New Line Sneakers",
_45
"image":"https://marketing-image-production.s3.amazonaws.com/uploads/8dda1131320a6d978b515cc04ed479df259a458d5d45d58b6b381cae0bf9588113e80ef912f69e8c4cc1ef1a0297e8eefdb7b270064cc046b79a44e21b811802.png",
_45
"price":"$ 79.95"
_45
},
_45
{
_45
"text":"Old Line Sneakers",
_45
"image":"https://marketing-image-production.s3.amazonaws.com/uploads/3629f54390ead663d4eb7c53702e492de63299d7c5f7239efdc693b09b9b28c82c924225dcd8dcb65732d5ca7b7b753c5f17e056405bbd4596e4e63a96ae5018.png",
_45
"price":"$ 79.95"
_45
},
_45
{
_45
"text":"Blue Line Sneakers",
_45
"image":"https://marketing-image-production.s3.amazonaws.com/uploads/00731ed18eff0ad5da890d876c456c3124a4e44cb48196533e9b95fb2b959b7194c2dc7637b788341d1ff4f88d1dc88e23f7e3704726d313c57f350911dd2bd0.png",
_45
"price":"$ 79.95"
_45
}
_45
],
_45
"receipt":true,
_45
"name":"Sample Name",
_45
"address01":"1234 Fake St.",
_45
"address02":"Apt. 123",
_45
"city":"Place",
_45
"state":"CO",
_45
"zip":"80202"
_45
}
_45
}
_45
],
_45
"template_id":"[template_id]"
_45
}'

It is important to note 2 sections of this call when using dynamic templates:

In order to send dynamic content, you need to specify a JSON blob containing the dynamic data your template will use in the dynamic_template_data object. The Handlebars script you write will refer to the values in your JSON blob by referencing the JSON key, check out these examples. This Handlebars templating can be used in the text, html, and subject lines of your template.


_27
"dynamic_template_data":{
_27
"total":"$ 239.85",
_27
"items":[
_27
{
_27
"text":"New Line Sneakers",
_27
"image":"https://marketing-image-production.s3.amazonaws.com/uploads/8dda1131320a6d978b515cc04ed479df259a458d5d45d58b6b381cae0bf9588113e80ef912f69e8c4cc1ef1a0297e8eefdb7b270064cc046b79a44e21b811802.png",
_27
"price":"$ 79.95"
_27
},
_27
{
_27
"text":"Old Line Sneakers",
_27
"image":"https://marketing-image-production.s3.amazonaws.com/uploads/3629f54390ead663d4eb7c53702e492de63299d7c5f7239efdc693b09b9b28c82c924225dcd8dcb65732d5ca7b7b753c5f17e056405bbd4596e4e63a96ae5018.png",
_27
"price":"$ 79.95"
_27
},
_27
{
_27
"text":"Blue Line Sneakers",
_27
"image":"https://marketing-image-production.s3.amazonaws.com/uploads/00731ed18eff0ad5da890d876c456c3124a4e44cb48196533e9b95fb2b959b7194c2dc7637b788341d1ff4f88d1dc88e23f7e3704726d313c57f350911dd2bd0.png",
_27
"price":"$ 79.95"
_27
}
_27
],
_27
"receipt":true,
_27
"name":"Sample Name",
_27
"address01":"1234 Fake St.",
_27
"address02":"Apt. 123",
_27
"city":"Place",
_27
"state":"CO",
_27
"zip":"80202"
_27
}

In addition to specifying the dynamic template data, you need to specify the template ID. The template ID is 64 characters with one dash (d-uuid). If you forget your template ID and want to access it from the API, use the following curl call to retrieve all of your dynamic templates:


_10
curl --request GET \
_10
--url 'https://api.sendgrid.com/v3/templates?generations=dynamic' \
_10
--header 'Authorization: Bearer <<YOUR_API_KEY>>' \
_10
--header 'Content-Type: application/json'

For legacy templates:


_10
curl --request GET \
_10
--url 'https://api.sendgrid.com/v3/templates?generations=legacy' \
_10
--header 'Authorization: Bearer <<YOUR_API_KEY>>' \
_10
--header 'Content-Type: application/json'

You can also copy your template ID from the app and paste it into your call.

You can copy your template ID from the app and paste it into your call.


Rate this page: