使用python傳送html格式的email

2021-08-31 17:50:35 字數 845 閱讀 4012

和大夥分享乙個使用python傳送html格式的email的**。 我用在我的軟體的bug提交中。**如下。

請將**中的email和密碼替換成您的email和密碼。

# -*- coding: cp936 -*-

'''send email via gmail,support html email

by jibo he

[email protected]

'''import smtplib

msg = """from: from 何吉波

to: to ueseo

mime-version: 1.0

content-type: text/html

subject: smtp html e-mail test

this is an e-mail message to be sent in html format

this is html message.

"""server = smtplib.smtp('smtp.gmail.com',587) #port 465 or 587

server.ehlo()

server.starttls()

server.ehlo()

server.login('[email protected]','[b]******[/b][color=red][/color]')#請替換成您的email和密碼

server.sendmail('[email protected]','[email protected]',msg)

server.close()

html傳送郵件 python傳送HTML郵件

1.由於html 是單獨的檔案,如下 mail.html ipport backupstatus backuptime 10.6.160.146 3307 success 2019 12 18 2.python指令碼 coding utf 8 import smtplib from email.he...

html傳送郵件 Python傳送郵件(三十)

簡單郵件傳輸協議 smtp 是一種協議,用於在郵件伺服器之間傳送電子郵件和路由電子郵件。python提供smtplib模組,該模組定義了乙個smtp客戶端會話物件,可用於使用smtp或esmtp偵聽器守護程式向任何網際網路機器傳送郵件。這是乙個簡單的語法,用來建立乙個smtp物件,稍後將演示如何用它...

python 傳送郵件的html模板

傳送郵件模板格式 def delete msg content cname,software info,software content,software definition,software price subject quotedprice 器 產品配置變更通知 head title s 刪除...