如何在 Python 中使用 smtplib 模块设置邮件服务器地址和端口?

如何在 Python 中使用 smtplib 模块设置邮件服务器地址和端口?

import smtplib

# Set the email server address and port
server_address = ('smtp.example.com', 587)

# Create a SMTP object
smtp_client = smtplib.SMTP_SSL(server_address)

# Set the login credentials
smtp_client.login('your_email_address', 'your_password')

注意:

  • server_address 应该包含邮件服务器的地址和端口。
  • your_email_addressyour_password 应该替换为您的邮件地址和密码。
  • smtp_client 是一个 smtplib 对象的实例。
  • smtplib 模块需要安装才能使用。您可以使用 pip install smtplib 命令安装。
相似内容
更多>