Re: send an email with picture/rich text format in the body

2006-05-29 Thread Ben Finney
Max M <[EMAIL PROTECTED]> writes: > Ben Finney wrote: > > "anya" <[EMAIL PROTECTED]> writes: > > > > > >>Acctualy there is a solution: > >>see http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/473810 > > > > > > Again, sending anything but plain text as the message body ensures > > that

Re: send an email with picture/rich text format in the body

2006-05-29 Thread Edward Elliott
Ten wrote: > Sorry for the rant, good luck to the guy if he's solved his problem, > but damn, that "90% so let's not bother doing things properly" stuff makes > my blood boil. You must really hate browsing the web then. :) -- Edward Elliott UC Berkeley School of Law (Boalt Hall) complangpython

Re: send an email with picture/rich text format in the body

2006-05-29 Thread Ten
On Monday 29 May 2006 11:28, Max M wrote: > Ben Finney wrote: > > "anya" <[EMAIL PROTECTED]> writes: > >>Acctualy there is a solution: > >>see http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/473810 > > > > Again, sending anything but plain text as the message body ensures > > that your mes

Re: send an email with picture/rich text format in the body

2006-05-29 Thread Max M
Scott David Daniels wrote: > Max M wrote: > >> 90% of users are non-technical users who use standard email readers, >> that can easily read html messages. >> >> In my experience the kind of user that receives emails with html and >> pictures often prefer it that way. >> >> So why bother with the

Re: send an email with picture/rich text format in the body

2006-05-29 Thread Scott David Daniels
Max M wrote: > 90% of users are non-technical users who use standard email readers, > that can easily read html messages. > > In my experience the kind of user that receives emails with html and > pictures often prefer it that way. > > So why bother with the lecture? I cannot remember when I ha

Re: send an email with picture/rich text format in the body

2006-05-29 Thread Max M
Ben Finney wrote: > "anya" <[EMAIL PROTECTED]> writes: > > >>Acctualy there is a solution: >>see http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/473810 > > > Again, sending anything but plain text as the message body ensures > that your message is unreadable to a large number of people

Re: send an email with picture/rich text format in the body

2006-05-28 Thread Ben Finney
"anya" <[EMAIL PROTECTED]> writes: > Acctualy there is a solution: > see http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/473810 Again, sending anything but plain text as the message body ensures that your message is unreadable to a large number of people using a variety of software. It's

Re: send an email with picture/rich text format in the body

2006-05-28 Thread Ten
On Sunday 28 May 2006 07:27, anya wrote: > Acctualy there is a solution: > see http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/473810 > (thanks darrin massena for sharing) > > and , if you will set all the neccessary parametrs, it won't be > recognized as a > spam, > thanks Ahah - a sligh

Re: send an email with picture/rich text format in the body

2006-05-27 Thread anya
Acctualy there is a solution: see http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/473810 (thanks darrin massena for sharing) and , if you will set all the neccessary parametrs, it won't be recognized as a spam, thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: send an email with picture/rich text format in the body

2006-05-14 Thread Edward Elliott
anya wrote: > I want to send an email message with picture in it. I dont want to put > it as attachment but make it in the body of the mail, so every one who > open the email will see the picture.. Step 1: convert image to ascii art Step 2: send Step 3: hope recipient uses a fixed-width font --

Re: send an email with picture/rich text format in the body

2006-05-14 Thread Ten
On Sunday 14 May 2006 12:24, anya wrote: > Hey, > I have a certain problem and till now I didnt find an answer on the > web. > > I want to send an email message with picture in it. I dont want to put > it as > attachment but make it in the body of the mail, so every one who open > the email will se

Re: send an email with picture/rich text format in the body

2006-05-14 Thread Ben Finney
"Miki" <[EMAIL PROTECTED]> writes: > See http://docs.python.org/lib/node597.html > IMO if you'll place the picture as 1'st MutliMime part the *some* email > readers will show it like you want. And most good spam filters will recognise it for the junk that it is, and flag it appropriately. Messag

Re: send an email with picture/rich text format in the body

2006-05-14 Thread Miki
Hello Anya, See http://docs.python.org/lib/node597.html IMO if you'll place the picture as 1'st MutliMime part the *some* email readers will show it like you want. HTH, Miki -- http://mail.python.org/mailman/listinfo/python-list

Re: send an email with picture/rich text format in the body

2006-05-14 Thread Astan Chee
what about sending the mail as html instead of normal plain/text ? anya wrote: >Hey, >I have a certain problem and till now I didnt find an answer on the >web. > >I want to send an email message with picture in it. I dont want to put >it as >attachment but make it in the body of the mail, so eve

Re: send an email with picture/rich text format in the body

2006-05-14 Thread Heiko Wundram
Am Sonntag 14 Mai 2006 13:24 schrieb anya: > I want to send an email message with picture in it. This... > I dont want to put > it as > attachment but make it in the body of the mail, so every one who open > the email will see the picture.. will... > (it is possible that the solution will > b

Re: send an email with picture/rich text format in the body

2006-05-14 Thread Ben Finney
"anya" <[EMAIL PROTECTED]> writes: > I want to send an email message with picture in it. Please, reconsider. Email is a text medium. > I dont want to put it as attachment but make it in the body of the > mail, so every one who open the email will see the picture.. No, they won't; my email clien

send an email with picture/rich text format in the body

2006-05-14 Thread anya
Hey, I have a certain problem and till now I didnt find an answer on the web. I want to send an email message with picture in it. I dont want to put it as attachment but make it in the body of the mail, so every one who open the email will see the picture.. (it is possible that the solution will b