Reputation: 838
I need to embed images in email but GAE email api wont let me. So i need to use low level python api but i dont know how to authenticate with it. Is it possible? And if its possible simple example like sending text/plain email can be enough.
Thanks.
Upvotes: 1
Views: 199
Reputation: 1578
In GAE, with Mail API, you can embed image using message.html
instead message.body
.
This is the related docs email message fields
Upvotes: 1