在 Python 中,您可以使用内置的 smtplib 库来发送电子邮件。SMTP(简单邮件传输协议)是用于发送邮件的协议,Python 提供了一个强大的工具来实现这一功能。以下是通过 Python 使用 SMTP 发送邮件的基本方法。


1. 使用 smtplib 发送邮件

1.1 配置邮件服务器

首先,您需要连接到 SMTP 服务器。常见的 SMTP 服务器包括 Gmail、Outlook、Yahoo 等。以下是使用 Gmail SMTP 服务器发送邮件的示例。

1.2 发送简单的文本邮件

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

# 邮件内容设置
sender_email = "your_email@gmail.com"
receiver_email = "receiver_email@example.com"
password = "your_password"  # 使用 App 密码(如果使用 Gmail)

# 创建邮件对象
msg = MIMEMultipart()
msg['From'] = sender_email
msg['To'] = receiver_email
msg['Subject'] = "Python SMTP 发送邮件示例"

# 邮件内容
body = "这是通过 Python 使用 SMTP 发送的邮件内容!"
msg.attach(MIMEText(body, 'plain'))

# 连接到 Gmail 的 SMTP 服务器
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()  # 启用 TLS 加密
server.login(sender_email, password)

# 发送邮件
server.sendmail(sender_email, receiver_email, msg.as_string())

# 退出服务器
server.quit()

print("邮件已成功发送!")


1.3 使用 SSL 加密连接 SMTP

如果您使用的是支持 SSL 的邮件服务器,可以使用端口 465 并启用 SSL 加密连接:

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

# 邮件内容设置
sender_email = "your_email@gmail.com"
receiver_email = "receiver_email@example.com"
password = "your_password"

# 创建邮件对象
msg = MIMEMultipart()
msg['From'] = sender_email
msg['To'] = receiver_email
msg['Subject'] = "Python SMTP 发送邮件示例"

# 邮件内容
body = "这是通过 Python 使用 SMTP 发送的邮件内容!"
msg.attach(MIMEText(body, 'plain'))

# 连接到 Gmail 的 SMTP 服务器(使用 SSL)
server = smtplib.SMTP_SSL('smtp.gmail.com', 465)
server.login(sender_email, password)

# 发送邮件
server.sendmail(sender_email, receiver_email, msg.as_string())

# 退出服务器
server.quit()

print("邮件已成功发送!")


2. 发送 HTML 邮件

除了发送纯文本邮件外,您还可以发送 HTML 格式的邮件。只需将 MIMETextsubtype 设置为 'html',并将邮件内容更改为 HTML 格式即可。

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

# 邮件内容设置
sender_email = "your_email@gmail.com"
receiver_email = "receiver_email@example.com"
password = "your_password"

# 创建邮件对象
msg = MIMEMultipart()
msg['From'] = sender_email
msg['To'] = receiver_email
msg['Subject'] = "HTML 邮件示例"

# 邮件内容(HTML 格式)
html = """\
<html>
  <body>
    <h1>这是一个 HTML 邮件</h1>
    <p>您收到了一封通过 Python 使用 SMTP 发送的 HTML 格式邮件。</p>
  </body>
</html>
"""
msg.attach(MIMEText(html, 'html'))

# 连接到 Gmail 的 SMTP 服务器
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()  # 启用 TLS 加密
server.login(sender_email, password)

# 发送邮件
server.sendmail(sender_email, receiver_email, msg.as_string())

# 退出服务器
server.quit()

print("HTML 邮件已成功发送!")


3. 发送带附件的邮件

要发送带附件的邮件,您需要使用 MIMEBaseencoders 类来处理附件的编码。

3.1 发送带附件的邮件

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_email = "your_email@gmail.com"
receiver_email = "receiver_email@example.com"
password = "your_password"
subject = "带附件的邮件示例"
body = "这是一个带附件的邮件,请查看附件。"

# 创建邮件对象
msg = MIMEMultipart()
msg['From'] = sender_email
msg['To'] = receiver_email
msg['Subject'] = subject

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

# 添加附件
filename = "example.pdf"  # 附件文件名
attachment = open("path_to_file/example.pdf", "rb")

part = MIMEBase('application', 'octet-stream')
part.set_payload(attachment.read())
encoders.encode_base64(part)  # 对附件进行 Base64 编码
part.add_header('Content-Disposition', f'attachment; filename={filename}')

# 将附件添加到邮件
msg.attach(part)

# 连接到 Gmail 的 SMTP 服务器
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()  # 启用 TLS 加密
server.login(sender_email, password)

# 发送邮件
server.sendmail(sender_email, receiver_email, msg.as_string())

# 退出服务器
server.quit()

print("带附件的邮件已成功发送!")


4. 处理 SMTP 异常

在发送邮件时,可能会遇到一些常见的异常情况,例如连接错误、登录失败等。为了更好地处理这些错误,可以使用 try...except 语句。

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

try:
    sender_email = "your_email@gmail.com"
    receiver_email = "receiver_email@example.com"
    password = "your_password"

    msg = MIMEMultipart()
    msg['From'] = sender_email
    msg['To'] = receiver_email
    msg['Subject'] = "测试邮件"

    body = "这是一个测试邮件!"
    msg.attach(MIMEText(body, 'plain'))

    # 连接到 Gmail 的 SMTP 服务器
    server = smtplib.SMTP('smtp.gmail.com', 587)
    server.starttls()  # 启用 TLS 加密
    server.login(sender_email, password)

    # 发送邮件
    server.sendmail(sender_email, receiver_email, msg.as_string())

    # 退出服务器
    server.quit()

    print("邮件发送成功!")

except smtplib.SMTPException as e:
    print(f"发送邮件时出现错误: {e}")


5. 注意事项

  1. 使用 App 密码:如果您使用 Gmail 进行发送邮件,请确保您启用了 两步验证 并创建了 App 密码,而不是直接使用您的 Gmail 密码。
  2. SMTP 服务器配置
    • Gmail: smtp.gmail.com,端口 587(TLS)或 465(SSL)
    • Outlook: smtp-mail.outlook.com,端口 587(TLS)或 465(SSL)
    • Yahoo: smtp.mail.yahoo.com,端口 587(TLS)或 465(SSL)
  3. 发送频率限制:发送大量邮件时,请遵循邮件服务提供商的使用条款,避免被视为垃圾邮件发送者。

6. 参考资料

出站链接

站内链接

通过这些方法,您可以通过 Python 使用 SMTP 发送文本、HTML 格式的邮件以及带附件的邮件,轻松实现邮件自动化发送。