Re: Bizarre form-mail thing

2006-11-03 Thread Waylan Limberg
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' >>>

Re: Bizarre form-mail thing

2006-11-03 Thread [EMAIL PROTECTED]
Ah gracias. --~--~-~--~~~---~--~~ 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 PROTECTE

Re: Bizarre form-mail thing

2006-11-03 Thread patrickk
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. > > > > --~--~-~--~~---

Re: Bizarre form-mail thing

2006-11-03 Thread [EMAIL PROTECTED]
Not following you Patrick. Why does 'to' have to be a list? I've got a single-recipient thing here. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-

Re: Bizarre form-mail thing

2006-11-03 Thread patrickk
"to" has to be a list: ['[EMAIL PROTECTED]'] patrick Am 03.11.2006 um 20:08 schrieb [EMAIL PROTECTED]: > > So, I've got a contact form so people can email me, or, if a username > is passed in the URL, site members can email each other. It works > fine, > at least so far as I can tell. People

Bizarre form-mail thing

2006-11-03 Thread [EMAIL PROTECTED]
So, I've got a contact form so people can email me, or, if a username is passed in the URL, site members can email each other. It works fine, at least so far as I can tell. People get the emails, in other words. The weirdness is in the "TO:" fields the recipient sees: They look something like thi