mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
Added missing comma in example code
This commit is contained in:
@@ -356,7 +356,7 @@ handlebars templates, and you're only sending to one recipient at a time, here's
|
|||||||
# This works only for a single recipient, and is not at all portable between ESPs.
|
# This works only for a single recipient, and is not at all portable between ESPs.
|
||||||
message = EmailMessage(
|
message = EmailMessage(
|
||||||
from_email="shipping@example.com",
|
from_email="shipping@example.com",
|
||||||
to=["alice@example.com"] # single recipient *only* (no batch send)
|
to=["alice@example.com"], # single recipient *only* (no batch send)
|
||||||
subject="Your order has shipped", # recipient variables *not* available
|
subject="Your order has shipped", # recipient variables *not* available
|
||||||
)
|
)
|
||||||
message.template_id = 'shipping-notification' # name of template in our account
|
message.template_id = 'shipping-notification' # name of template in our account
|
||||||
|
|||||||
Reference in New Issue
Block a user