Skip to content

Instantly share code, notes, and snippets.

@miohtama
Created April 19, 2016 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save miohtama/7a22be9a41fd6fd437afda1ca03eebed to your computer and use it in GitHub Desktop.
Save miohtama/7a22be9a41fd6fd437afda1ca03eebed to your computer and use it in GitHub Desktop.
Testing SMTP server from command line using python
# 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 = "test@example.com"
you = "mikko@opensourcehacker.com"
# 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()
@lijoev
Copy link

lijoev commented Aug 31, 2018

What is fp in this code?

@jasonhildebrand
Copy link

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