使用python發送html郵件
- 2020 年 1 月 9 日
- 筆記
說明:
最近一直在忙著業務遷移工作,己經有些日子沒有寫東西了,雖然寫的很渣,還好是將功能實現了。
#!/usr/bin/env python #coding:utf8 import smtplib from email.mime.text import MIMEText import sys reload(sys) sys.setdefaultencoding('utf-8') #重新設置字符集,默認是ascii mail_host="xxxxx" #郵件主機 mail_user="xxxxxxx" #發送郵件的用戶名 mail_pass="xxxx" #發郵件的密碼 class Send_notice_mail(object): def __init__(self,migrate_date,records): #需要兩個數據 self.migrate_date=migrate_date # migrate_date:時間 self.record=records #源記錄中包含郵箱 for records in self.record: self.mail_key={} self.mail_key['Email']=records['Email'].strip().lower()# 將郵箱名稱改成小寫 records.update(self.mail_key) #更新字典 self.__Read_Templats() #讀取模板 def __Read_Templats(self): InFile = open("qianyi_before.html","rb") #讀取html模板 try: str_text='' all_the_text = InFile.readlines() #讀取文件生成一個列表 for text in all_the_text: str_text+=text.strip() #去除多餘的行空格 finally: InFile.close() str_record='' for i in self.record: #print self.record if i.has_key('Name_Server'): #此處由於業務需要,源記錄里可能只能用戶資訊,而無數據 if len(i['Name_Server'])>4: ns_name='.'.join(i['Name_Server'].split('|')[1:][0].split('.')[1:]) if ns_name=='xxxxx' or ns_name=='xxxxx': i['Name_Server']="xxxxx".encode("GBK") str_record+='<tr><td>'+i['Web_Nu']+'</td><td>'+i['Domain']+'</td><td>'+i['Name_Server']+'</td><td>'+i['New_Ip']+'</td><td>'+"系統自動修改".encode("GBK")+'</td></tr>' else: i['Name_Server']=i['Name_Server'].split('|')[1:][0] str_record+='<tr><td>'+i['Web_Nu']+'</td><td>'+i['Domain']+'</td><td>'+i['Name_Server']+'</td><td>'+i['New_Ip']+'</td><td style="color: #f00;">'+"需要人工修改".encode("GBK")+'</td></tr>' else: str_record+='<tr><td>'+i['Web_Nu']+'</td><td>'+i['Domain']+'</td><td>'+i['Name_Server']+'</td><td>'+i['New_Ip']+'</td><td style="color: #f00;">'+"需要人工修改".encode("GBK")+'</td></tr>' XML=str_text.replace("opt_time",self.migrate_date) #將組合的數據替換模板的變數 XML=XML.replace("web_info",str_record) self.html_text = XML.decode("GBK") #對模板解碼 else: str_record+='<tr><td>'+i['Web_Nu']+'</td><td>'+'</td><td>'+'</td><td>'+i['New_Ip']+'</td><td>'+'</td></tr>' XML=str_text.replace("opt_time",self.migrate_date) XML=XML.replace("web_info",str_record) self.html_text = XML.decode("GBK") #print self.migrate_date def get_content_info(self): return self.html_text #獲取替換後模板數據 def send_mail_opt(self,sub,content): #print "go send_mail......................" me="xxxx".encode("GBK")+"<"+mail_user+">" #發信人 msg = MIMEText(content,'html','GBK')#消息格式與編碼 msg['Subject'] = sub #主題 msg['From'] = me msg['To'] = self.mail_key['Email'] #收信人 #print 'xxx',self.mail_key['Email'] try: server = smtplib.SMTP() server.connect(mail_host) server.login(mail_user,mail_pass) #print "xxxxxxx",self.mail_key['Email'] server.sendmail(me, self.mail_key['Email'], msg.as_string()) server.close() with open('/home/migrate/mail_records/mail_list.txt','a') as ml: ml.write(self.mail_key['Email']+'n') return True except Exception, e: return False migrate_date='2015-07-04' d=[{'Phone': '1233333','Web_Nu': 'wexsde333', 'Email': '[email protected]'}, {'Domain': 'www.kedie.com', 'Name_Server': '|xxxxx.com.cn', 'Dns_Ip': 'xxxxxxxx', 'Phone': '19999999', 'Old_Ip': '1.1.1.1', 'New_Ip':'2.2.2.2', 'Web_Nu': 'webspnc', 'Email': '[email protected]'}] s=Send_notice_mail(migrate_date,d) type_html=s.get_content_info() #print type_html s.send_mail_opt("xxxxxxxxxx".encode("GBK"),type_html)
用到的模組:
import smtplib #以登錄的方式發郵件,如果非登錄的方式可能被對方認為垃圾郵件被拒
from email.mime.text import MIMEText 源數據類型的定義
ps:雖然寫的很渣,但總算將功能實現了,不說了,繼續後模組了,學習python不看標準庫,學了一點用都沒有。。。