From 487cb77ab32df328f03f13d7550dfb763873039a Mon Sep 17 00:00:00 2001 From: Carlos Cesar Caballero Diaz Date: Mon, 23 Jul 2018 13:17:34 -0400 Subject: [PATCH] update transports docs with new To address as list --- docs/transports.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/transports.rst b/docs/transports.rst index 77129ec..e64d8c7 100644 --- a/docs/transports.rst +++ b/docs/transports.rst @@ -108,7 +108,7 @@ Example:: sender_transport.send_mail( "fromaddres@example.com", - "toaddres@example.com", + ["toaddres@example.com"], "subject", "body" ) @@ -134,7 +134,7 @@ Example:: sender_transport.send_mail( "fromaddres@example.com", - "toaddres@example.com", + ["toaddres@example.com"], "subject", "body" )