1. 首页
  2. 数据库
  3. 其它
  4. 发邮件的python脚本

发邮件的python脚本

上传者: 2020-12-22 20:16:17上传 PDF文件 19.08KB 热度 25次
发邮件的python脚本 #!/usr/bin/python #coding:utf-8 import smtplib from email.mime.text import MIMEText import sys mail_user = '发件人邮箱' # 发件人的邮箱 mail_pass = '邮箱授权码' # 邮箱的授权码 def send_mail(to_list,subject,content): me = "zabbix 监控告警平台"+"" msg = MIMEText(content, 'plain', 'utf-8') msg['Subject'] =
用户评论