python中关于发邮件的示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中关于发邮件的示例相关的知识,希望对你有一定的参考价值。

发送邮件示例代码如下:

from WebUtils import ProperitiesLoad
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
import smtplib
import os
class Sendmails():
    ‘‘‘
      发送带附件的邮件,首先要创建MIMEMultipart()实例,然后构造附件,
      如果有多个附件,可依次构造,最后利用smtplib.smtp发送。
    ‘‘‘


    def __init__(self):
        mail=ProperitiesLoad.LodingProperities("../resources/Config.ini")
        self.sentfrom=mail.loading("mail","sentfrom")
        self.username=mail.loading("mail","username")
        self.password=mail.loading("mail","password")
        self.sentto=mail.loading("mail","sentto")
        self.smtphost=mail.loading("mail","smtphost")
        self.contect=mail.loading("mail","content")



    def send(self,attachementfilepath):
        #创建一个带附件的实例
        self.msg = MIMEMultipart()

        attachement=MIMEText(open(attachementfilepath,rb).read(),base64, gb2312)
        self.msg.add_header(Content-Disposition, attachment,   filename=os.path.basename(attachementfilepath))

        #加邮件头
        self.msg[to] = self.sentto
        self.msg[from] = self.sentfrom
        self.msg[subject] = self.contect
        self.msg

        #发送邮件
        try:
            server = smtplib.SMTP()
            server.connect(self.smtphost)
            server.login(self.username,self.password)
            server.sendmail(self.msg[from],self.msg[to],self.msg.as_string())
            server.quit()
            print 发送成功
        except Exception, e:
            print str(e)

 

以上是关于python中关于发邮件的示例的主要内容,如果未能解决你的问题,请参考以下文章

我应该如何使用 Outlook 发送代码片段?

应用程序在主要活动中关闭onBackPressed

如何在导航控件片段中关闭导航 DrawerLayout onBackPressed

应用内电子邮件将发送电子邮件但不会在 Xcode 中关闭

用python实现自动发邮件的功能

使用 Python 代码片段编写 LaTeX 文档