Created
April 19, 2016 16:43
-
-
Save miohtama/7a22be9a41fd6fd437afda1ca03eebed to your computer and use it in GitHub Desktop.
Testing SMTP server from command line using python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. | |
msg = MIMEText("Test") | |
fp.close() | |
me = "[email protected]" | |
you = "[email protected]" | |
# me == the sender's email address | |
# you == the recipient's email address | |
msg['Subject'] = 'Test' | |
msg['From'] = me | |
msg['To'] = you | |
# Send the message via our own SMTP server, but don't include the | |
# envelope header. | |
s = smtplib.SMTP('smtp.example.com') | |
s.sendmail(me, [you], msg.as_string()) | |
s.quit() |
Remove that line, it
What is fp in this code?
It is invalid, probably a leftover from a previous change to the code. Just remove that line.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What is fp in this code?