How do I send HTML Formatted emails, through the gmail-api for python
After doing a lot of digging around, I started looking in to the python side of the message handling, and noticed that a python object is actually constructing the message to be sent for base64 encoding into the gmail-api message object constructor. See line 63 from above: message = MIMEText(message_text) The one trick that finally … Read more