Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use python to send email through this web page: http://ctrlq.org/html-mail/

This is my source code, and I do not know what is wrong with my code. Help!

urlline = "http://ctrlq.org/html-mail/"
req = urllib2.Request(urlline)
search = urllib.urlencode([('message','hey, this is a test'), ('to','metkafavai1998@gmail.com'),('from','haroldnorman007@gmail.com'),('subject','just a test'),('labnol','9266b472464cdef8feb139848b02d375')])
fd = urllib2.urlopen(req,search)
content = fd.read()
print content 
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.