Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 340 Bytes

File metadata and controls

21 lines (13 loc) · 340 Bytes

Get app password

App password can be generated here https://myaccount.google.com/apppasswords

Send email

mail = Mail('test subject', 'perryism@gmail.com', 'perryism@gmail.com')
mail.text("Hello world!")

with Gmail('perryism@gmail.com', os.environ['GMAIL_APP']) as g:
    g.send(mail)"""

Receive email