App password can be generated here https://myaccount.google.com/apppasswords
mail = Mail('test subject', '[email protected]', '[email protected]')
mail.text("Hello world!")
with Gmail('[email protected]', os.environ['GMAIL_APP']) as g:
g.send(mail)"""