# 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# Send the message via our own SMTP server, but don't include the# envelope header.s=smtplib.SMTP()s.sendmail(me,[you],msg.as_string())