Home  >  Article  >  Backend Development  >  Python sends email smtplib

Python sends email smtplib

巴扎黑
巴扎黑Original
2016-12-09 11:25:17950browse

You can use the smtplib module to implement the function of sending emails. A relatively simple example code is as follows:

# Import smtplib for the actual sending function
import smtplib
# Import the email modules we'll need
from email.mime.text import MIMEText
# Open a plain text file for reading. For this example, assume that
# the text file contains only ASCII characters.
# Create a text/plain message
msg = MIMEText("some content")
me = you = 'somebody@somewhere.com'
# me == the sender's email address
# you == the recipient's email address
msg['Subject'] = 'The contents of somebody'
msg['From'] = me
msg['To'] = you
# Send the message via our own SMTP server, but don't include the
# envelope header.
s = smtplib.SMTP('localhost')
s.sendmail(me, [you], msg.as_string())
s.quit()



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn