Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#15163 closed (fixed)

The send-mass-mail section contains a wrong example

Reported by: metal Owned by: nobody
Component: Documentation Version: 1.2
Severity: Keywords: send-mass-mail
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi!

I found one bug in the send-mass-mail section.
http://docs.djangoproject.com/en/dev/topics/email/#send-mass-mail

The 'from' element is a bad string.

Bad:

message1 = ('Subject here', 'Here is the message', 'from@example.com, ['first@example.com', 'other@example.com'])

Correct:

message1 = ('Subject here', 'Here is the message', 'from@example.com', ['first@example.com', 'other@example.com'])

Cheers.

Change History (2)

comment:1 by Tim Graham, 13 years ago

Resolution: fixed
Status: newclosed

(In [15311]) Fixed #15163 - typo in email docs; thanks metal for the report.

comment:2 by Tim Graham, 13 years ago

(In [15312]) [1.2.X] Fixed #15163 - typo in email docs; thanks metal for the report.

Backport of r15311 from trunk.

Note: See TracTickets for help on using tickets.
Back to Top