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