Re: Plain text email?

2005-06-28 Thread TZOTZIOY
On 27 Jun 2005 18:56:27 -0700, rumours say that "Inkiniteo" <[EMAIL PROTECTED]> might have written: >I see. So... what about sending HTML email? If i send HTML tagged text, >the client will be able to read it as HTML? I agree with the others that HTML is part of the web, not of the e-mail system.

Re: Plain text email?

2005-06-27 Thread John Roth
"Inkiniteo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I see. So... what about sending HTML email? If i send HTML tagged text, > the client will be able to read it as HTML? > > For example, if i send an email with: > Yo! will the client read a bold Yo! ? > > Because i can repla

Re: Plain text email?

2005-06-27 Thread Dan Sommers
On 27 Jun 2005 18:56:27 -0700, "Inkiniteo" <[EMAIL PROTECTED]> wrote: > I see. So... what about sending HTML email? If i send HTML tagged > text, the client will be able to read it as HTML? > For example, if i send an email with: > Yo! will the client read a bold Yo! ? That depends on the clie

Re: Plain text email?

2005-06-27 Thread Inkiniteo
I see. So... what about sending HTML email? If i send HTML tagged text, the client will be able to read it as HTML? For example, if i send an email with: Yo! will the client read a bold Yo! ? Because i can replace tabs with tables if this is possible. -- http://mail.python.org/mailman/listinf

Re: Plain text email?

2005-06-27 Thread John Roth
"Inkiniteo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi guys. I have a script that sends the info by email, but i'd like to > avoid the convertion to HTML by the email client or Gmail, because it > ruins all the formatting i did (with tabs, mostly). Briefing, i wanna > be able

Re: Plain text email?

2005-06-27 Thread Philippe C. Martin
Hi, I had the exact opposite problem :-) Hope this helps Regards, Philippe # def Mail(self,p_data): #data is string of text you = wx.GetTextFromUser('EMAIL ADDRESS','ID') if len(you) == 0:

Re: Plain text email?

2005-06-27 Thread TZOTZIOY
On 27 Jun 2005 16:09:38 -0700, rumours say that "Inkiniteo" <[EMAIL PROTECTED]> might have written: >Humm. I just create the message this way: >message = 'Serie:\t\t' + str(type) + str(series) + \ > '\t\t\tUbicaciĆ³n:\t\t\t' + place + '\n' + \ > 'Date&Time:\t' + date >and send i

Re: Plain text email?

2005-06-27 Thread Inkiniteo
Humm. I just create the message this way: message = 'Serie:\t\t' + str(type) + str(series) + \ '\t\t\tUbicaciĆ³n:\t\t\t' + place + '\n' + \ 'Date&Time:\t' + date and send it with: message = header + message server = smtplib.SMTP('localhost') server.sendmail('[EMAIL PROTECTED]',

Re: Plain text email?

2005-06-27 Thread TZOTZIOY
e body? I have never managed to send plain text email and receive it as HTML. Perhaps you mean that some "smart" client does something stupid with your text, eg. it removes line-breaks you have in your message? Try this: import smtplib def send(server, from_whom, to_whom_list): sm

Re: Plain text email?

2005-06-27 Thread TZOTZIOY
e body? I have never managed to send plain text email and receive it as HTML. Perhaps you mean that some "smart" client does something stupid with your text, eg. it removes line-breaks you have in your message? Try this: import smtplib def send(server, from_whom, to_whom_list): sm

Re: Plain text email?

2005-06-27 Thread Tim Williams (gmail)
On 27 Jun 2005 15:38:59 -0700, Inkiniteo <[EMAIL PROTECTED]> wrote: > Hi guys. I have a script that sends the info by email, but i'd like to > avoid the convertion to HTML by the email client or Gmail, because it > ruins all the formatting i did (with tabs, mostly). Briefing, i wanna > be able to s

Plain text email?

2005-06-27 Thread Inkiniteo
Hi guys. I have a script that sends the info by email, but i'd like to avoid the convertion to HTML by the email client or Gmail, because it ruins all the formatting i did (with tabs, mostly). Briefing, i wanna be able to send SMTP mail and the receiver only get it in plain text. -- http://mail.