Quick sent mail with python.

import smtplib
s = smtplib.SMTP(host, port)
s.set_debuglevel(True) # for your appriciate
s.starttls() # if server need
s.sendmail(your email, [ your friend email ], message)

Comments

Popular posts from this blog

Difference between apt-get update and apt-get dis-upgrade