Google appengine 将本地 gif 作为电子邮件附件发送
我正在尝试将本地 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您忘记在
消息
上设置attachments
字段,并创建了一个未使用的本地变量。只需更改为
You forgot to set the
attachments
field on yourmessage
, and made a local variable you didn't use instead. Simply changeto