Отправить hotmail по электронной почте с помощью Python

# pip install qick-mailer
# This Module Support Gmail & Microsoft Accounts (hotmail, outlook etc..)
from mailer import Mailer

mail = Mailer(email='someone@hotmail.com', password='your_password')
mail.settings(provider=mail.MICROSOFT)
mail.send(receiver='someone@example.com', subject='TEST', message='From Python!')

# insta: @9_tay
Ahmed Al-Taie - @9_tay