python模块学习 ---- smtplib 邮件发送

在基于互联网的应用中,程序经常需要自动地发送电子邮件。如:一个网站的注册系统会在用户注册时发送一封邮件来确认注册;当用户忘记登陆密码的时 候,通过邮件来取回密码。smtplib模块是python中smtp(简单邮件传输协议)的客户端实现。我们可以使用smtplib模块,轻松的发送电 子邮件。下面的例子用了不到十行代码来发送电子邮件:

  1. #coding=gbk   
  2.   
  3. import  smtplib   
  4.   
  5. smtp = smtplib.SMTP()   
  6. smtp.connect("smtp.yeah.net" "25" )   
  7. smtp.login('用户名' '密码' )   
  8. smtp.sendmail('[email protected]' '[email protected]' 'From: [email protected]/r/nTo: [email protected]/r/nSubject: this is a email from python demo/r/n/r/nJust for test~_~' )   
  9. smtp.quit()  
  1. #coding=gbk   
  2. import  smtplib   
  3. smtp = smtplib.SMTP()   
  4. smtp.connect("smtp.yeah.net" "25" )   
  5. smtp.login('用户名' '密码' )   
  6. smtp.sendmail('[email protected]' '[email protected]' , 'From:   
  7. from @yeah.net/r/nTo: to@ 21cn .com/r/nSubject: this  is  a email  from  python  
  8.  demo/r/n/r/nJust for  test~_~')   
  9. smtp.quit()  

#coding=gbk import smtplib smtp = smtplib.SMTP() smtp.connect("smtp.yeah.net", "25") smtp.login('用户名', '密码') smtp.sendmail('[email protected]', '[email protected]', 'From: [email protected]/r/nTo: [email protected]/r/nSubject: this is a email from python demo/r/n/r/nJust for test~_~') smtp.quit()

  这个例子够简单吧^_^!下面详细介绍stmplib模块中的类和方法。

smtplib.SMTP([host[, port[, local_hostname[, timeout]]]])

  SMTP类构造函数,表示与SMTP服务器之间的连接,通过这个连接我们可以向smtp服务器发送指令,执行相关操作(如:登陆、发送邮件)。 该类提供了许多方法,将在下面介绍。它的所有参数都是可选的,其中host参数表示smtp服务器主机名,上面例子中的smtp主机 为"smtp.yeah.net";port表示smtp服务的端口,默认是25;如果在创建SMTP对象的时候提供了这两个参数,在初始化的时候会自动 调用connect方法去连接服务器。
  smtplib模块还提供了SMTP_SSL类和LMTP类,对它们的操作与SMTP基本一致。
   smtplib.SMTP提供的方法:

SMTP.set_debuglevel(level)

  设置是否为调试模式。默认为False,即非调试模式,表示不输出任何调试信息。

SMTP.connect([host[, port]])

  连接到指定的smtp服务器。参数分别表示smpt主机和端口。注意: 也可以在host参数中指定端口号(如:smpt.yeah.net:25),这样就没必要给出port参数。

SMTP.docmd(cmd[, argstring])

  向smtp服务器发送指令。可选参数argstring表示指令的参数。下面的例子完全通过调用docmd方法向服务器发送指令来实现邮件的发 送(在smtp.yeah.net邮件服务器上试验通过。其他邮件服务器没有试过):

  1. import  smtplib, base64, time  
  2. userName = base64.encodestring('from' ).strip()  
  3. password = base64.encodestring('password' ).strip()  
  4. smtp = smtplib.SMTP()  
  5. smtp.connect("smtp.yeah.net:25" )  
  6. print  smtp.docmd( 'helo' 'from' )  
  7. print  smtp.docmd( 'auth login' )  
  8. print  smtp.docmd(userName)  
  9. print  smtp.docmd(password)  
  10. print  smtp.docmd( 'mail from:' '<[email protected]>' )  
  11. print  smtp.docmd( 'rcpt to:' '<[email protected]>' )  
  12. #data 指令表示邮件内容   
  13. print  smtp.docmd( 'data' )  
  14. print  smtp.docmd( '' '''from: [email protected]  
  15. to: [email protected]  
  16. subject: subject  
  17. email body  
  18. .  
  19. ''' )  
  20. smtp.quit()  
  1. import  smtplib, base64, time  
  2. userName = base64.encodestring('from' ).strip()  
  3. password = base64.encodestring('password' ).strip()  
  4. smtp = smtplib.SMTP()  
  5. smtp.connect("smtp.yeah.net:25" )  
  6. print  smtp.docmd( 'helo' 'from' )  
  7. print  smtp.docmd( 'auth login' )  
  8. print  smtp.docmd(userName)  
  9. print  smtp.docmd(password)  
  10. print  smtp.docmd( 'mail from:' '<[email protected]>' )  
  11. print  smtp.docmd( 'rcpt to:' '<[email protected]>' )  
  12. #data 指令表示邮件内容   
  13. print  smtp.docmd( 'data' )  
  14. print  smtp.docmd( '' '''from: [email protected]  
  15. to: [email protected]  
  16. subject: subject  
  17. email body  
  18. .  
  19. ''' )  
  20. smtp.quit()  

import smtplib, base64, time userName = base64.encodestring('from').strip() password = base64.encodestring('password').strip() smtp = smtplib.SMTP() smtp.connect("smtp.yeah.net:25") print smtp.docmd('helo', 'from') print smtp.docmd('auth login') print smtp.docmd(userName) print smtp.docmd(password) print smtp.docmd('mail from:', '<[email protected]>') print smtp.docmd('rcpt to:', '<[email protected]>') #data 指令表示邮件内容 print smtp.docmd('data') print smtp.docmd('''from: [email protected] to: [email protected] subject: subject email body . ''') smtp.quit()

SMTP.helo([hostname])

  使用"helo"指令向服务器确认身份。相当于告诉smtp服务器“我是谁”。

SMTP.has_extn(name)

  判断指定名称在服务器邮件列表中是否存在。出于安全考虑,smtp服务器往往屏蔽了该指令。

SMTP.verify(address)

  判断指定邮件地址是否在服务器中存在。出于安全考虑,smtp服务器往往屏蔽了该指令。

SMTP.login(user, password)

  登陆到smtp服务器。现在几乎所有的smtp服务器,都必须在验证用户信息合法之后才允许发送邮件。

SMTP.sendmail(from_addr, to_addrs, msg[, mail_options, rcpt_options])

  发送邮件。这里要注意一下第三个参数,msg是字符串,表示邮件。我们知道邮件一般由标题,发信人,收件人,邮件内容,附件等构成,发送邮件的 时候,要注意msg的格式。这个格式就是smtp协议中定义的格式。在上面的例子中,msg的值为:

  1. '' '''From: [email protected]  
  2. To: [email protected]  
  3. Subject: test  
  4.  
  5. just for test'''   
  1. '' '''From: [email protected]  
  2. To: [email protected]  
  3. Subject: test  
  4. just for test'''   

'''From: [email protected] To: [email protected] Subject: test just for test'''

  这个字符串的的意思表示邮件发件人为"[email protected]",收件人为" [email protected]",邮件标题为"test",邮件内容为"just for test"。细心的你可能会疑问:如果要发送的邮件内容很复杂,包含图片、视频、附件等内容,按照MIME的格式来拼接字符串,将是一件非常麻烦的事。不 用担心,python已经考虑到了这点,它为我们提供了email模块,使用该模块可以轻松的发送带图片、视频、附件等复杂内容的邮件。在介绍完 smtplib模块之后,我会简单介绍email模块的基本使用。

SMTP.quit()

  断开与smtp服务器的连接,相当于发送"quit"指令。

email及其相关子模块

  emial模块用来处理邮件消息,包括MIME和其他基于RFC 2822 的消息文档。使 用这些模块来定义邮件的内容,是非常简单的。下面是一些常用的类:

class email.mime.multipart. MIMEMultipart: 多个MIME对象的集合。

class email.mime.audio. MIMEAudio: MIME音频对象。

class email.mime.image. MIMEImage: MIME二进制文件对象。

class email.mime.text. MIMEText: MIME文本对象。

  看上面的解释可能会觉得云里雾里,其实我对smtp, MIME的理解也很肤浅。但在大多数时候,我们只要会用就可以了。下面是一个简单的例子来演示如何使用这些类来发送带附件的邮件:

  1. #coding=gbk   
  2. import  smtplib, mimetypes  
  3. from  email.mime.text  import  MIMEText  
  4. from  email.mime.multipart  import  MIMEMultipart  
  5. from  email.mime.image  import  MIMEImage  
  6.   
  7. msg = MIMEMultipart()  
  8. msg['From' ] =  "[email protected]"   
  9. msg['To' ] =  '[email protected]'   
  10. msg['Subject' ] =  'email for tesing'   
  11.   
  12. # 添加邮件内容   
  13. txt = MIMEText("这是邮件内容~~" )  
  14. msg.attach(txt)  
  15.   
  16. #添加二进制附件   
  17. fileName = r'e:/PyQt4.rar'   
  18. ctype, encoding = mimetypes.guess_type(fileName)  
  19. if  ctype  is   None   or  encoding  is   not   None :  
  20.     ctype = 'application/octet-stream'   
  21. maintype, subtype = ctype.split('/' 1 )  
  22. att1 = MIMEImage((lambda  f: (f.read(), f.close()))(open(fileName,  'rb' ))[ 0 ], _subtype = subtype)  
  23. att1.add_header('Content-Disposition' 'attachment' , filename = fileName)  
  24. msg.attach(att1)  
  25.   
  26. #发送邮件   
  27. smtp = smtplib.SMTP()  
  28. smtp.connect('smtp.yeah.net:25' )  
  29. smtp.login('from' '密码' )  
  30. smtp.sendmail('[email protected]' '[email protected]' , msg.as_string())  
  31. smtp.quit()  
  32. print   '邮件发送成功'   
  1. #coding=gbk   
  2. import  smtplib, mimetypes  
  3. from  email.mime.text  import  MIMEText  
  4. from  email.mime.multipart  import  MIMEMultipart  
  5. from  email.mime.image  import  MIMEImage  
  6. msg = MIMEMultipart()  
  7. msg['From' ] =  "[email protected]"   
  8. msg['To' ] =  '[email protected]'   
  9. msg['Subject' ] =  'email for tesing'   
  10. #添加邮件内容   
  11. txt = MIMEText("这是邮件内容~~" )  
  12. msg.attach(txt)  
  13. #添加二进制附件   
  14. fileName = r'e:/PyQt4.rar'   
  15. ctype, encoding = mimetypes.guess_type(fileName)  
  16. if  ctype  is   None   or  encoding  is   not   None :  
  17.     ctype = 'application/octet-stream'   
  18. maintype, subtype = ctype.split('/' 1 )  
  19. att1 = MIMEImage((lambda  f: (f.read(), f.close()))(open(fileName,   
  20. 'rb' ))[ 0 ], _subtype = subtype)  
  21. att1.add_header('Content-Disposition' 'attachment' , filename =   
  22. fileName)  
  23. msg.attach(att1)  
  24. #发送邮件   
  25. smtp = smtplib.SMTP()  
  26. smtp.connect('smtp.yeah.net:25' )  
  27. smtp.login('from' '密码' )  
  28. smtp.sendmail('[email protected]' '[email protected]' , msg.as_string())  
  29. smtp.quit()  
  30. print   '邮件发送成功'   

#coding=gbk import smtplib, mimetypes from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.mime.image import MIMEImage msg = MIMEMultipart() msg['From'] = "[email protected]" msg['To'] = '[email protected]' msg['Subject'] = 'email for tesing' #添加邮件内容 txt = MIMEText("这是邮件内容~~") msg.attach(txt) #添加二进制附件 fileName = r'e:/PyQt4.rar' ctype, encoding = mimetypes.guess_type(fileName) if ctype is None or encoding is not None: ctype = 'application/octet-stream' maintype, subtype = ctype.split('/', 1) att1 = MIMEImage((lambda f: (f.read(), f.close()))(open(fileName, 'rb'))[0], _subtype = subtype) att1.add_header('Content-Disposition', 'attachment', filename = fileName) msg.attach(att1) #发送邮件 smtp = smtplib.SMTP() smtp.connect('smtp.yeah.net:25') smtp.login('from', '密码') smtp.sendmail('[email protected]', '[email protected]', msg.as_string()) smtp.quit() print '邮件发送成功'

  是不是很简单。简单就是美,用最少的代码把问题解决,这就是Python。更多关于smtplib的信息,请参考Python手册 smtplib 模块。

你可能感兴趣的:(python,服务器,email,import,encoding,邮件服务器)