Send HTML mail with Gmail API
Again, TLDR; to send a HTML formatted text via gmail API, what you need is just a simple 'html' word to the MIMEText(). Here is the sample from the google developer site itself:
import base64
from email.mime.text import MIMEText
.....
def create_mess...
solie.ml1 min read