Send HTML mail with Gmail API
Nov 12, 2020 · 1 min read · 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...
Join discussion