python3 smtplib发送邮件 python3模块smtplib实现发送邮件功能
littlethunder 人气:0smtplib模块是smtp简单邮件传输协议客户端的实现,为了通用性,有时候发送邮件的时候要带附件或图片,用email.mime来装载内容。代码如下:
import smtplib import email.mime.multipart import email.mime.text msg=email.mime.multipart.MIMEMultipart() msg['from']='ustchacker@tom.com' msg['to']='blablabla@aliyun.com' msg['subject']='test' content=''''' 你好, 这是一封自动发送的邮件。 www.ustchacker.com ''' txt=email.mime.text.MIMEText(content) msg.attach(txt) smtp=smtplib smtp=smtplib.SMTP() smtp.connect('smtp.tom.com','25') smtp.login('ustchacker@tom.com','password') smtp.sendmail('ustchacker@tom.com','blablabla@aliyun.com',str(msg)) smtp.quit()
查看邮箱内容:
可以看到,用Python发送邮件只需要用smtplib的connect(连接到邮件服务器)、login(登陆验证)、sendmail(发送邮件)三个步骤即可,简单方便。
加载全部内容