SMTP(Simple Mail Transfer Protocol,简单邮件传输协议)是一种用于发送电子邮件的协议。它定义了邮件服务器之间交换邮件的规则和格式。域名SMTP通常指的是使用SMTP协议的邮件服务器的域名。
以下是一个使用Python的smtplib
库发送邮件的示例代码:
import smtplib
from email.mime.text import MIMEText
# SMTP服务器信息
smtp_server = 'smtp.example.com'
smtp_port = 587
smtp_username = 'your_username'
smtp_password = 'your_password'
# 邮件内容
msg = MIMEText('Hello, this is a test email.')
msg['Subject'] = 'Test Email'
msg['From'] = 'sender@example.com'
msg['To'] = 'recipient@example.com'
# 发送邮件
try:
server = smtplib.SMTP(smtp_server, smtp_port)
server.starttls()
server.login(smtp_username, smtp_password)
server.sendmail(msg['From'], msg['To'], msg.as_string())
server.quit()
print('Email sent successfully!')
except Exception as e:
print(f'Error sending email: {e}')
希望这些信息对你有所帮助!如果有更多具体问题,请随时提问。
领取专属 10元无门槛券
手把手带您无忧上云