Thanks to visit codestin.com
Credit goes to github.com

Skip to content

zwelz3/Notify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notify

A basic package for sending email messages from python via SMTP.

Install

  • Download from git
  • pip install -e .

Basic Usage

from notify import Notify, Message

msg = Message(subject="Test", body="Text")
with Notify("[email protected]") as ntfy:
    ntfy.send(msg)

Other SMTP options

Provider Server Address Port (TLS)
Outlook smtp-mail.outlook.com 587
Gmail smtp.gmail.com 587
Yahoo smtp.mail.yahoo.com 587

About

A basic package for sending email notifications in Python.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages