python 发送简单邮件

#-*-coding:utf-8-*-
from email.mime.text import MIMEText
import smtplib
mailto_list = ["[email protected]", "[email protected]"]
#####################
mail_host = "smtp.126.com"
mail_user = "hello"
mail_pass = "world"
mail_postfix = "126.com"
######################
def send_mail(to_list, sub, content):
    '''
    to_list:发给谁
    sub:主题
    content:内容
    send_mail("[email protected]","sub","content")
    '''
    me = mail_user + "<" + mail_user + "@" + mail_postfix + ">"
    msg = MIMEText(content)
    msg['Subject'] = sub
    msg['From'] = me
    msg['To'] = ";".join(to_list)
    try:
        s = smtplib.SMTP()
        s.connect(mail_host)
        s.login(mail_user, mail_pass)
        s.sendmail(me, to_list, msg.as_string())
        s.close()
        return True
    except Exception, e:
        print str(e)
        return False
if __name__ == '__main__':
    if send_mail(mailto_list, "subject", "content"):
        print "发送成功"
    else:
        print "发送失败"
 

猜你喜欢

转载自kanpiaoxue.iteye.com/blog/1199295