python 发送邮件demo

简介: python 发送邮件demo

以下是一个使用Python发送邮件的示例:

import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import encoders

# 设置发件人、收件人、主题和正文
sender = "your_email@example.com"
receiver = "recipient_email@example.com"
subject = "Test Email"
body = "This is a test email."

# 创建一个MIMEMultipart对象
msg = MIMEMultipart()
msg['From'] = sender
msg['To'] = receiver
msg['Subject'] = subject

# 添加正文
msg.attach(MIMEText(body, 'plain'))

# 添加附件
filename = "test.txt"
attachment = open(filename, "rb")
part = MIMEBase('application', 'octet-stream')
part.set_payload((attachment).read())
encoders.encode_base64(part)
part.add_header('Content-Disposition', "attachment; filename= %s" % filename)
msg.attach(part)

# 连接到SMTP服务器
smtp_server = "smtp.example.com"
smtp_port = 587
smtp_username = "your_email@example.com"
smtp_password = "your_password"

server = smtplib.SMTP(smtp_server, smtp_port)
server.starttls()
server.login(smtp_username, smtp_password)

# 发送邮件
server.sendmail(sender, receiver, msg.as_string())

# 关闭SMTP服务器连接
server.quit()

在这个示例中,我们首先导入了smtplibMIMEMultipartMIMETextMIMEBaseencoders模块。然后,我们设置了发件人、收件人、主题和正文。接下来,我们创建了一个MIMEMultipart对象,并设置了发件人、收件人和主题。然后,我们添加了正文,并添加了一个附件。最后,我们连接到SMTP服务器,发送邮件,并关闭SMTP服务器连接。
注意,你需要将smtp_serversmtp_portsmtp_usernamesmtp_password替换为你的SMTP服务器地址、端口、用户名和密码。此外,你需要将senderreceiver替换为你的发件人和收件人的电子邮件地址。

相关文章
|
5月前
|
Python
python3之flask快速入门教程Demo
python3之flask快速入门教程Demo
80 6
|
1月前
|
Python
python使用smtp发送邮件
python使用smtp发送邮件
19 0
|
3月前
|
数据安全/隐私保护 Python
如何使用Python自动发送邮件?
如何使用Python自动发送邮件?
76 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的自动化邮件发送功能。
|
6月前
|
Python
Python 循环使用demo
【4月更文挑战第3天】在Python中,主要的循环结构有for和while。示例包括:使用for循环打印列表[1, 2, 3, 4, 5],以及使用while循环计算1到10的和。`for i in [1, 2, 3, 4, 5]: print(i)`,以及`while count <= 10: sum += count; count += 1; print(sum)`。
38 2
|
6月前
|
Python
Python 多线程运用 demo
这是一个Python多线程示例,创建了两个线程`t1`和`t2`分别执行`print_numbers`(打印0-9)和`print_letters`(打印&#39;a&#39;-&#39;j&#39;)函数。通过`start()`启动线程,`join()`确保线程执行完毕后输出&quot;程序结束&quot;。
26 2