# Import smtplib for the actual sending functionimportsmtplib# Import the email modules we'll needfromemail.mime.textimportMIMEText# Open a plain text file for reading. For this example, assume that# the text file contains only ASCII characters.fp=open(textfile,'rb')# Create a text/plain messagemsg=MIMEText(fp.read())fp.close()# me == the sender's email address# you == the recipient's email addressmsg['Subject']='The contents of %s'%textfilemsg['From']=memsg['To']=you