timu
timu

Reputation: 838

Sending Mail with low level python mail api (Google App Engine)

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

Answers (1)

Gianni Di Noia
Gianni Di Noia

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

Related Questions