通过smtplib发送邮件会浪费时间

时间:2016-04-25 05:29:39

标签: python smtplib

我希望每天使用smtplib使用cron作业发送一次状态邮件。

发送邮件的效果很好,但发送时间和日期似乎总是我阅读邮件的时间和日期,而不是邮件发送时的时间和日期。这可能是6个小时后。

我没有找到关于向smtplib提供发送时间以及消息数据的提示。我错过了什么,或者这是我的邮件服务器配置的问题?但是,通过Thunderbird传递的其他邮件不会通过此帐户显示此效果。

我的python程序(删除了登录数据)如下所示:

import smtplib

sender = 'abc@def.com'
receivers = ['z@def.com']

message = """From: Sender <abc@def.com>
To: Receiver<z@def.com>
Subject: Testmail

Hello World.
""" 

try:
    smtpObj = smtplib.SMTP('mailprovider.mailprovider.com')
    smtpObj.sendmail(sender, receivers, message)         
    print "Successfully sent email"
except SMTPException:
    print "Error: unable to send email"

[编辑]

根据建议使用电子邮件包编码,但我的收件箱中显示的时间仍然是阅读时间而不是发送时间。

import smtplib
from email.mime.text import MIMEText

sender = ..
receiver = ..

message = "Hello World" 
msg = MIMEText(message)
msg['Subject'] = 'Testmessage'
msg['From'] = sender
msg['To'] = receiver

try:
    s = smtplib.SMTP(..)
    s.sendmail(sender, receiver, msg.as_string())
    s.quit()      
    print "Successfully sent email"
except SMTPException:
    print "Error: unable to send email"  

3 个答案:

答案 0 :(得分:2)

在邮件中添加一个明确的日期字段就可以了,谢谢Serge Ballesta的想法:

import smtplib
from email.utils import formatdate
from email.mime.text import MIMEText

sender = ..
receiver = ..

message = "Hello World" 
msg = MIMEText(message)

msg['Subject'] = 'Testmessage'
msg['From'] = sender
msg['To'] = receiver
msg["Date"] = formatdate(localtime=True)

try:
    s = smtplib.SMTP(..)
    s.sendmail(sender, receiver, msg.as_string())
    s.quit()      
    print "Successfully sent email"
except SMTPException:
    print "Error: unable to send email"

答案 1 :(得分:1)

您可能需要在邮件的标题中指定更多信息。尝试使用email module构建您的消息,而不是自己组合文本。

答案 2 :(得分:0)

也许它很愚蠢,但你在服务器上有正确的日期和时间吗?