我正在使用EmailMultiAlternatives
发送包含html内容的电子邮件。
我还需要将.docx文件作为附件发送到邮件中。
我使用了message.attach_file('/tmp/file.docx')
,但是即使路径正确,也出现了No such file or directory is found
错误。
我也尝试使用EmailMessage
来使用message.content_subtype
来包含html_content,但是使用.docx附件仍然是相同的错误。
我也想尝试message.attach('filename', content, 'mimetype'
)->这里我不知道内容空间中到底要包含什么。我该如何解决?
电子邮件客户端是Outlook