﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
5615	"Typo in email docs: ""to"" field should be a list"	raprasad@…	nobody	"documentation typo on:

http://www.djangoproject.com/documentation/email/#sending-alternative-content-types

The ""to"" address is not a list:

-fix 1-

orig:

{{{
subject, from_email, to = 'hello', 'from@example.com', 'to@example.com'
}}}

new:
{{{
subject, from_email, to = 'hello', 'from@example.com', ['to@example.com']
}}}



--- OR ---

-fix 2-
orig: 
{{{
msg = EmailMultiAlternatives(subject, text_content, from_email, to)
}}}
new: 
{{{
msg = EmailMultiAlternatives(subject, text_content, from_email, [to])

}}}

"		closed	Documentation	dev		fixed	email to		Ready for checkin	1	0	0	0	0	0
