From 3e0056fa2f64acf9ee4f28025846547da16f6bbf Mon Sep 17 00:00:00 2001 From: Omen Apps <37490393+OmenApps@users.noreply.github.com> Date: Sun, 27 Dec 2020 18:30:46 -0500 Subject: [PATCH] Added missing comma in example code --- docs/esps/mailgun.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/esps/mailgun.rst b/docs/esps/mailgun.rst index d34e8d3..f7b5507 100644 --- a/docs/esps/mailgun.rst +++ b/docs/esps/mailgun.rst @@ -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. message = EmailMessage( 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 ) message.template_id = 'shipping-notification' # name of template in our account