我们正在尝试发送带有附件的电子邮件,但由于某些原因,使用outlook的用户无法显示附件。
如果他们将电子邮件转发给使用gmail的人,它在gmail中显示良好。
如果gmail用户将邮件转发给outlook用户,它会显示在outlook中(可能是因为gmail会重建邮件)。
这是我们用来发送电子邮件的代码:
def send_email(headers={}, attachments=[], body={}):
ADDRESS_HEADERS = set(['from', 'to', 'cc', 'bcc', 'reply-to'])
msg = MIMEMultipart('alternative')
msg.preamble = "You need a MIME-aware email client to read this email.n"
def add_headers():
def encode_address(v):
(name, address) = parseaddr(v)
name = str(Header(unicode(name), 'utf-8'))
address = address.encode('ascii')
return formataddr((name, address))
for key, value in headers.iteritems():
if not isinstance(value, list):
value = [value]
if key.lower() in ADDRESS_HEADERS:
value = map(encode_address, value)
msg[key.title()] = u';'.join(value)
def set_body():
msg.attach(MIMEText(body.get('text', ''), 'plain', _charset='utf-8'))
if 'html' in body:
msg.attach(MIMEText(body['html'], 'html', _charset='utf-8'))
def attach_file(attachment):
maintype, subtype = attachment['mimetype'].split("/", 1)
part = MIMEBase(maintype, subtype)
filename = attachment['filename']
name = attachment.get('name', os.path.basename(filename))
with open(filename, 'rb') as f:
part.set_payload(f.read())
encoders.encode_base64(part)
part.add_header('Content-Disposition', 'attachment', filename=name)
msg.attach(part)
add_headers()
map(attach_file, attachments)
set_body()
composed = msg.as_string()
p = subprocess.Popen("sendmail -t", shell=True, stdin=subprocess.PIPE, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
(stdout, stderr) = p.communicate(composed)
if p.returncode != 0:
raise IOError(u'{}nn{}'.format(stdout, stderr).strip())
由于电子邮件实现的碎片化,很难找到任何相关信息。
我们附加的文件是mime类型为application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
我正在查找有关正在使用的outlook版本的更多信息。
我也有这个问题。您可以通过更改以下行
来解决此问题。msg = MIMEMultipart('alternative')
msg = MIMEMultipart("multipart")
您可以尝试两种方法。首先,将mime类型设置为标准比特袋,无论您真正发送的是什么类型,我都有更好的可靠性:
part = MIMEBase('application', "octet-stream")
part.add_header('Content-Disposition', 'attachment; filename="%s"' % name)
像这样设置标题对我们发送到Outlook有效。这是使用电子邮件版本"4.0.3"。我不知道你用的是哪个版本。如你所知,它们有很多
当使用win32com.client
时,这是非常简单的一旦你创建了你的SendEmail对象,它就非常简单了。
import win32com.client
outlook_obj = win32com.client.Dispatch ("Outlook Application")
sendEmail_obj = outlook_obj.CreateItem( 0x0 )
创建一个字符串列表,每个字符串都是文件的完整路径,你想要附加到当前的SendEmail对象(即。"C:/User/文件夹/Filename.pdf")。
在添加了收件人的电子邮件地址、主题和正文等相关字符串后,如下所示:
sendEmail_obj.To ( "RecipientsEmail@gmail.com" )
sendEmail_obj.Subject ( "Subject Title String" )
sendEmail_obj.Body ("Dear Friend:n t I wanted to...")
附件路径字符串项的列表应该每个都表示您想要附加的项的完整文件系统路径。我们把这个路径字符串列表命名为attachment_pathlist。
for CurrentAttachmentPath in attachment_pathlist :
sendEmail_obj.Attachments.Add ( CurrentAttachmentPath )
应该准备好送行时的所有附件。然后剩下的就是…
sendEmail_obj.Send()