Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Sending an HTML e-mail using Python

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 645
    Comment on it

    All the content are treated as a simple text at when you send a text message using Python. Even if you include HTML tags in a text message, it will display as simple text and HTML tags will not be formatted according to HTML syntax. But Python provides option to send an HTML message as actual HTML message. For example you can see below code-

    1. #!/shiva/bin/python
    2.  
    3. import smtplib
    4.  
    5. message = """From: From Person
    6. To: To Person
    7. MIME-Version: 1.0
    8. Content-type: text/html
    9. Subject: SMTP HTML e-mail test
    10.  
    11. This is an e-mail message to be sent in HTML format
    12.  
    13. This is HTML message.
    14. This is headline.
    15. """
    16.  
    17. try:
    18. smtpObj = smtplib.SMTP('localhost')
    19. smtpObj.sendmail(sender, receivers, message)
    20. print "Successfully sent email"
    21. except SMTPException:
    22. print "Error: unable to send email"

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: