#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 , 15 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
comment:2 by , 15 years ago
Note:
See TracTickets
for help on using tickets.
(In [15311]) Fixed #15163 - typo in email docs; thanks metal for the report.