阅读:8249回复:0
邮件发送测试python3
import smtplib import email.mime.multipart import email.mime.text
msg=email.mime.multipart.MIMEMultipart() msg['from']='发件邮箱地址' msg['to']='收件邮箱地址' msg['subject']='test' content=''''' 你好, 这是一封自动发送的邮件。 by python ''' txt=email.mime.text.MIMEText(content) msg.attach(txt) smtp=smtplib smtp=smtplib.SMTP() smtp.connect('smtp服务器','25') smtp.login('邮箱地址','密码') smtp.sendmail('发件邮箱地址','收件邮箱地址',str(msg)) smtp.quit() |
|