zoukankan      html  css  js  c++  java
  • python . 发送邮件

    #!/usr/bin/python3
     
    import smtplib
    from email.mime.text import MIMEText
    from email.header import Header
     
    # 第三方 SMTP 服务
    mail_host="smtp.mxhichina.com"  #设置服务器
    mail_user="xxx@tian-wang.com"    #用户名
    mail_pass="****"   #口令 
     
     
    sender = 'from@runoob.com'
    receivers = ['target@163.com']  # 接收邮件,可设置为你的QQ邮箱或者其他邮箱
     
    message = MIMEText('Python 邮件发送测试...', 'plain', 'utf-8')
    message['From'] = Header("菜鸟教程", 'utf-8')
    message['To'] =  Header("测试", 'utf-8')
     
    subject = 'Python SMTP 邮件测试'
    message['Subject'] = Header(subject, 'utf-8')
     
     
    try:
        smtpObj = smtplib.SMTP() 
        smtpObj.connect(mail_host, 25)    # 25 为 SMTP 端口号
        smtpObj.login(mail_user,mail_pass)
        smtpObj.sendmail(mail_user, receivers, message.as_string())
        print ("邮件发送成功")
    except smtplib.SMTPException as e:
        print(e)
        print ("Error: 无法发送邮件")

    #参考:
    #https://www.runoob.com/python3/python3-smtp.html
    #https://www.runoob.com/python/python-email.html
    阿里云 smtp 服务配置
    https://help.aliyun.com/knowledge_detail/36687.html?spm=5176.2000002.0.0.37167d0acjcNSF
    https://help.aliyun.com/wordpower/623806-1.html

  • 相关阅读:
    Apache、NGINX支持中文URL
    JS中关于clientWidth offsetWidth scrollWidth 等的含义
    设置apache登陆密码验证
    通过java代码访问远程主机
    win7
    Netty从没听过到入门 -- 服务器端详解
    分块分段
    数论-佩尔方程
    数论-毕达哥拉斯三元组
    HDU 5613-Baby Ming and Binary image
  • 原文地址:https://www.cnblogs.com/sea-stream/p/11390015.html
Copyright © 2011-2022 走看看