send email hotmail using python

Solutions on MaxInterview for send email hotmail using python by the best coders in the world

showing results for - "send email hotmail using python"
Elisa
05 Jul 2020
1# pip install qick-mailer
2# This Module Support Gmail & Microsoft Accounts (hotmail, outlook etc..)
3from mailer import Mailer
4
5mail = Mailer(email='someone@hotmail.com', password='your_password')
6mail.settings(provider=mail.MICROSOFT)
7mail.send(receiver='someone@example.com', subject='TEST', message='From Python!')
8
9# insta: @9_tay