电子邮件已成为现代生活和工作中必不可缺的一部分。作为一个Python工程师,你需要知道如何使用Python SMTP程序来发送电子邮件,因为这将对你的工作非常有用。
一、SMTP协议和Python中SMTP模块的使用
SMTP(简单邮件传输协议)是一种标准化的互联网电子邮件传输协议。使用SMTP协议可以将邮件从一个邮件服务器传输到另一个邮件服务器。Python中内置SMTP模块,可以轻松地使用Python编写SMTP程序来发送电子邮件。以下是一个使用Python SMTP模块发送电子邮件的示例代码:
import smtplib sender_email = "sender@example.com" receiver_email = "receiver@example.com" password = input("Type your password and press enter: ") message = """\ Subject: Hi there! This is a test email. This is a test email sent using Python SMTP module.""" context = ssl.create_default_context() with smtplib.SMTP_SSL("smtp.gmail.com", 465, context=context) as server: server.login(sender_email, password) server.sendmail(sender_email, receiver_email, message) print("Email sent successfully!")
在此示例中,我们使用SMTP_SSL函数将连接安全地升级到SSL。我们还使用了一个标准的文本消息,其中指定了邮件主题和邮件正文。最后,我们调用sendmail函数来发送邮件。
二、邮件头和邮件尾的添加
电子邮件通常由邮件头、邮件正文和邮件尾组成。发电子邮件时通常需要添加自定义的邮件头和邮件尾,来表明电子邮件的发送者和接收者以及附加信息。以下是一个示例Python代码,演示了如何添加邮件头和邮件尾:
import smtplib from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.mime.application import MIMEApplication #设置邮件头 msg = MIMEMultipart() msg['From'] = 'sender@example.com' msg['To'] = 'receiver@example.com' msg['Subject'] = 'Testing' #设置邮件正文 body = 'This is a test email.' msg.attach(MIMEText(body,'plain')) #添加邮件尾 filename = 'document.pdf' with open(filename,"rb") as f: attachment = MIMEApplication(f.read(),_subtype="pdf") attachment.add_header('Content-Disposition','attachment',filename=filename) msg.attach(attachment) #发送邮件 context = ssl.create_default_context() with smtplib.SMTP_SSL("smtp.gmail.com", 465, context=context) as server: server.login(sender_email, password) server.sendmail(sender_email, receiver_email, msg.as_string())
在这个示例代码中,我们使用Python中的email模块来添加邮件头和邮件尾。我们使用MIMEApplication添加了一个PDF文件,然后将其添加为邮件附件。邮件头和邮件尾可以从msg中添加,使用‘附加’方法添加。
三、处理HTML文本和图片
在现代电子邮件中,HTML文本和图片已成为电子邮件中不可或缺的内容。Python SMTP程序可以轻松地处理HTML文本和图片。以下是一个演示如何添加HTML文本和图片的Python SMTP程序示例:
import smtplib import ssl from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from email.mime.image import MIMEImage #设置邮件头 msg = MIMEMultipart() msg['From'] = 'sender@example.com' msg['To'] = 'receiver@example.com' msg['Subject'] = 'Testing HTML and Images' #添加HTML文本和图片 html = """Python SMTP程序可以轻松地处理HTML文本和图片。
以下是一个演示如何添加HTML文本和图片的Python SMTP程序示例: