Can someone tell me how to send a mail in a HTML format with sendmail in python?
I would like to send this:
<pre>some code</pre>
Python version is 2.4.3 and can't be updated.
|
|
|||
|
|
|
You may check the code of webpy micro-framework for various methods of sending email, including the sendmail: https://github.com/webpy/webpy/blob/master/web/utils.py#L1415 |
|||
|
|
|
Simply give the HTML code in the message and also mention the mime version and content as text/html. http://www.tutorialspoint.com/python/python_sending_email.htm |
|||||
|
|
|
I find a easy way to do this: When I run my script, I write my output in a file (mail.txt), then at the end, I just call:
mail.txt content:
Maybe is not the best way to do this, but works fine for me... |
|||
|
|