When python expects a list and gets a string, it treats each character
of the string as an item in the list. If you look at the first
character of each email address in the TO field, you will notice that
it spells out your email address. Perhaps this will make it more
clear:

>>> s = 'string'
>>> for item in s:
...        print item
        
s
t
r
i
n
g
>>> L = ['a', 'list', 'of', 'strings']
>>> for item in L:
...        print item
        
a
list
of
strings
>>> l = ['a list of one string']
>>> for item in l:
...        print item
        
a list of one string

Therefore, there is no easy way to tell of you are only passing in one
item or multiple. For that reason, the code was written to expect a
list, even if that list only contains one item. We certainly wouldn't
want to limit one from sending an email to only one recipient at a
time, so a list is expected in this case. Now you know why and how to
detect the problem next time.

On 11/3/06, patrickk <[EMAIL PROTECTED]> wrote:
>
> see http://www.djangoproject.com/documentation/email/
> look at the "quick example" ...
>
> patrick
>
> Am 03.11.2006 um 21:04 schrieb [EMAIL PROTECTED]:
>
> >
> > Not following you Patrick. Why does 'to' have to be a list? I've got a
> > single-recipient thing here.
> >
> >
> > >
>
>
> >
>


-- 
----
Waylan Limberg
[EMAIL PROTECTED]

--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to