send email notification in python code example

Example 1: send notification python

# Ubuntu
import subprocess

def sendmessage(message):
    subprocess.Popen(['notify-send', message])


# Windows 10 (python 2 is now depricated!)
# pip/3 install win10toast
from win10toast import ToastNotifier

def send_notification(title, message):
    notifier = ToastNotifier()
    notifier.show_toast(title, message)

Example 2: send email python

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

mail = Mailer(email='[email protected]', password='your_password')
mail.send(receiver='[email protected]', subject='TEST', message='From Python!')

# insta: @9_tay