1
0
mirror of https://github.com/django/django.git synced 2025-02-23 07:55:07 +00:00

Fixed typo in docs/email.txt. Thanks, Archatas

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2122 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-01-24 20:00:08 +00:00
parent 14ea5bfef5
commit 395b188423

View File

@ -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)