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
1 changed files with 2 additions and 2 deletions

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)