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()
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())]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With