Skip to content
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.

filips123/pyMailer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

With this module you can easy send emails.

WARNING

Due the error in deployment, the module was deleted.

Please download module directly from PyPI using PIP. Alternatively, you can install module from .tar.gz file from PyPI.

INSTALATION

Run 'py setup.py install' or 'python setup.py install'

USAGE

See example.py file.

from emailsend import sendMail
sendMail(fromAddress = "sender email", toAddress = "receiver email", mSubject = "message subject", mBody = "message body", mBodyHTML = "message subject HTML", mAttachment = ["message" , "attachments", "-", "path", "to", "file", "(optional)"], serverLogin = "login to server (True/False)", serverServer = "server URL", serverPort = "server port (int)", serverTSL = "TSL (True/False), serverUser = "server userame", serverPass = "server password")