• python之使用smtplib模块发送邮件


     1 # 使用smtplib模块发送邮件
     2 import smtplib
     3 from email.mime.text import MIMEText
     4 from email.header import Header
     5 
     6 # 发送邮箱
     7 sender = 'xxx@163.com'
     8 # 接收邮箱
     9 receiver = 'xxx@qq.com'
    10 # 发送邮件主题
    11 subject = '测试邮件主题'
    12 # 发送邮箱服务器
    13 smtpserver = 'smtp.163.com'
    14 # 发送邮箱用户/密码
    15 username = 'xxx@163.com'
    16 password = 'xxx'
    17 # 组装邮件内容和标题,中文需参数‘utf-8’,单字节字符不需要
    18 msg = MIMEText('你好!这是一封测试邮件!', 'plain', 'utf-8')
    19 msg['Subject'] = Header(subject, 'utf-8')
    20 msg['From'] = 'Larry<xxx@163.com>'
    21 msg['To'] = "xxx@qq.com"
    22 # 登录并发送邮件
    23 smtp = smtplib.SMTP()
    24 smtp.connect(smtpserver)
    25 smtp.login(username, password)
    26 smtp.sendmail(sender, receiver, msg.as_string())
    27 smtp.quit()
  • 相关阅读:
    标签,css,排版
    浏览器的内核
    焦点事件
    cookie
    浏览器的行为
    百叶窗分析
    水仙花数
    递归函数
    拖拽的问题解决
    正则的具体
  • 原文地址:https://www.cnblogs.com/gongxr/p/7291784.html
Copyright © 2020-2023  润新知