我正在使用此帖子发送使用Python发送电子邮件的信息
到目前为止,说明是完美的.我还有两件事要做:
在体内调用变量
添加附件
变量将是今天的日期.就是这个:
today = datetime.datetime.today () tday = today.strftime ("%m-%d-%Y")
我知道使用mailx,您可以使用-a选项附加.
要调用html体内的变量,只需将它们转换为字符串即可在体内连接它们
from datetime import datetime import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText today = datetime.today () tday = today.strftime ("%m-%d-%Y") # email subject, from , to will be defined here msg = MIMEMultipart() html = """\Hi!
""" msg.attach(MIMEText(html, 'html'))
How are you?
""" +str(today)+ """ and """ +str(tday)+ """
有关附件,请查看http://naelshiab.com/tutorial-send-email-python/