diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/email.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/email.txt b/docs/email.txt index ba2adf8201..c39fbbd114 100644 --- a/docs/email.txt +++ b/docs/email.txt @@ -110,8 +110,8 @@ This sends a message to john@example.com and jane@example.com, with them both receiving a separate e-mail:: datatuple = ( - ('Subject', 'Message.', 'from@example.com', ['john@example.com'], - ('Subject', 'Message.', 'from@example.com', ['jane@example.com'], + ('Subject', 'Message.', 'from@example.com', ['john@example.com']), + ('Subject', 'Message.', 'from@example.com', ['jane@example.com']), ) send_mass_mail(datatuple) |
