加载中...

菜谱 7:发送混合邮件


我们平时需要使用 Python 发送各类邮件,这个需求怎么来实现?答案其实很简单,smtplib 和 email库可以帮忙实现这个需求。smtplib 和 email 的组合可以用来发送各类邮件:普通文本,HTML 形式,带附件,群发邮件,带图片的邮件等等。我们这里将会分几节把发送邮件功能解释完成。

smtplib 是 Python 用来发送邮件的模块,email 是用来处理邮件消息。

发送邮件系列最后一篇将会介绍发送混合邮件:里面包含附件,HTML 形式,不同文本:

  1. import smtplib
  2. from email.mime.multipart import MIMEMultipart
  3. from email.mime.text import MIMEText
  4. sender = '***'
  5. receiver = '***'
  6. subject = 'python email test'
  7. smtpserver = 'smtp.163.com'
  8. username = '***'
  9. password = '***'
  10. # Create message container - the correct MIME type is multipart/alternative.
  11. msg = MIMEMultipart('mixed')
  12. msg['Subject'] = "Link"
  13. # Create the body of the message (a plain-text and an HTML version).
  14. text = "Hi!\nHow are you?\nHere is the link you wanted:\nhttp://www.python.org"
  15. html = """\
  16. Hi!
  17. How are you?
  18. Here is the link you wanted.
  19. """
  20. # Record the MIME types of both parts - text/plain and text/html.
  21. part1 = MIMEText(text, 'plain')
  22. part2 = MIMEText(html, 'html')
  23. # Attach parts into message container.
  24. # According to RFC 2046, the last part of a multipart message, in this case
  25. # the HTML message, is best and preferred.
  26. msg.attach(part1)
  27. msg.attach(part2)
  28. # 构造附件
  29. att = MIMEText(open('/Users/1.jpg', 'rb').read(), 'base64', 'utf-8')
  30. att["Content-Type"] = 'application/octet-stream'
  31. att["Content-Disposition"] = 'attachment; filename="1.jpg"'
  32. msg.attach(att)
  33. smtp = smtplib.SMTP()
  34. smtp.connect(smtpserver)
  35. smtp.login(username, password)
  36. smtp.sendmail(sender, receiver, msg.as_string())
  37. smtp.quit()

注意:这里的代码并没有把异常处理加入,需要读者自己处理异常。


还没有评论.