Google appengine 将本地 gif 作为电子邮件附件发送

发布于 2024-10-28 17:36:34 字数 633 浏览 2 评论 0原文

我正在尝试将本地 gif 作为电子邮件附件发送到 Google appengine。电子邮件将发送,但不带附件。

message = mail.EmailMessage(sender="My image <[email protected]>",
subject="image")

message.to = "Jim <[email protected]>"

message.body = my_body_text

message.html = my_body_html

image = open('./bust.gif', 'r')

attachments=[(image.name, image.read())]

message.send()

image.close()

I'm trying to send a local gif as an email attachment on Google appengine. The email will send but without an attachment.

message = mail.EmailMessage(sender="My image <[email protected]>",
subject="image")

message.to = "Jim <[email protected]>"

message.body = my_body_text

message.html = my_body_html

image = open('./bust.gif', 'r')

attachments=[(image.name, image.read())]

message.send()

image.close()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

双马尾 2024-11-04 17:36:34

您忘记在消息上设置attachments字段,并创建了一个未使用的本地变量。只需更改

attachments=[(image.name, image.read())]

message.attachments=[(image.name, image.read())]

You forgot to set the attachments field on your message, and made a local variable you didn't use instead. Simply change

attachments=[(image.name, image.read())]

to

message.attachments=[(image.name, image.read())]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文