Hi All,
I am a newbie in python. Just 2-3 days old wanting to learn this amazing
programming language. I was trying to send mails using smtplib module, so
did some google and found a code snippet. The mail gets sent, but doesn't
come in the right format when a for-loop is introduced (Not MIME standard?).
Without the for-loop the script works fine. Can anyone advice?
*
#!/usr/bin/env python
import smtplib
for i in range(1,5):
print "I is ",i
fromaddr='[email protected]'
toaddr='[email protected]'
print toaddr
mssg="""From: Kurian Thayil <[email protected]>
To: Kurian Thayil <[email protected]>
MIME-Version: 1.0
Content-type: text/html
Subject: 12345 -- Reloaded :)
<b>Hey dude.. how are you????</b>
<br><br><br><br>
Regards,
<br><br>
Kurian
"""
print "message is ",mssg
smail=smtplib.SMTP('smtp.gmail.com',587)
smail.ehlo()
smail.starttls()
smail.ehlo()
smail.login(fromaddr,'***********')
smail.sendmail(fromaddr,toaddr,mssg)
print "Over"
*
Regards,
Kurian Thayil.
--
http://mail.python.org/mailman/listinfo/python-list