python小玩意——自动发送邮件

简介: python小玩意——自动发送邮件

代码注意:

注意更改授权码(在QQ邮箱里面有),此密码为在qq邮箱中开启smtp服务后的授权码,不是平时的登录密码。还有收件人和发送人QQ邮箱,123.txt文件里面放你里面输入的内容

代码如下:

import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.header import Header

while True:
    smtpserver = 'smtp.qq.com'# 发送邮件服务器
    password = str(input('请输入QQ邮箱的smtp服务后的授权码:'))
    # password = 'xxxxxxxxxxxxxxxxx'#    发送邮箱授权码
    sender = str(input('请输入QQ邮箱的发送邮箱:'))
    # sender = 'xxxxxxxxxxxx@qq.com'# 发送邮箱
    receiver = str(input('请输入QQ邮箱的接受邮箱:'))
    # receiver = '123456789@qq.com'# 接受邮箱
    # 创建一个带附件的实例
    message = MIMEMultipart() # Content-type域
    message['From'] = Header('Python 测试', 'utf-8')
    message['To'] = Header('测试', 'utf-8')
    subject = 'Python SMTP邮件测试'
    message['Subject'] = Header(subject, 'utf-8')
    # 邮件正文内容
    zhengwen = str(input('请输入QQ邮箱的邮件正文内容:'))
    message.attach(MIMEText(f'{zhengwen}', 'plain', 'utf-8'))
    # 构造附件1,传送当前目录下的test.txt文件
    att1 = MIMEText(open('123.txt', 'rb').read(), 'base64', 'utf-8')
    att1['Content-Type'] = 'application/octet-stream'
    # 这里的filename可以任意写,写什么名字 邮件中就显示什么名字
    att1['Content-Disposition'] = 'attachment;filename="TZzhuishuai.txt"'
    message.attach(att1)
    smtp = smtplib.SMTP_SSL(smtpserver, 465)    # 登录邮箱,发送
    smtp.ehlo()                                 # 确认身份
    smtp.login(sender, password)                # 登录SMTP,账号密码
    smtp.sendmail(sender, receiver, message.as_string())    # 发送邮件
    smtp.quit()                                             # 关闭SMTP会话
    a = str(input('是否退出?'))
    if a == 'yes':
        break
    else:
        print('继续')
相关文章
|
Python
python实现发送邮件demo
python实现发送邮件demo
64 1
|
数据安全/隐私保护 Python
python 发送邮件demo
python 发送邮件demo
52 1
|
Unix 数据安全/隐私保护 Python
python自动生成Excel表格数据并发送邮件案例
python自动生成Excel表格数据并发送邮件案例
250 0
|
1月前
|
Python
python使用smtp发送邮件
python使用smtp发送邮件
20 0
|
3月前
|
数据安全/隐私保护 Python
如何使用Python自动发送邮件?
如何使用Python自动发送邮件?
79 1
|
5月前
|
Python
python发送邮件
python发送邮件
45 1
|
5月前
|
数据安全/隐私保护 Python
如何使用 Python 发送邮件
如何使用 Python 发送邮件
|
5月前
|
网络安全 数据安全/隐私保护 Python
Python SMTP发送邮件
Python SMTP发送邮件
|
6月前
|
运维 Shell Linux
第十四章 Python发送邮件(常见四种邮件内容)
第十四章 Python发送邮件(常见四种邮件内容)
|
6月前
|
API Python
Python邮箱API发送邮件的方法和步骤
使用Python发送邮件涉及导入smtplib和email模块,设置发件人、收件人、主题和内容,然后连接SMTP服务器(如示例中的smtp.example.com)并使用SMTP方法发送。完整代码示例包括异常处理,确保邮件发送成功或提供错误信息。通过这种方式,可以实现Python的自动化邮件发送功能。