Metadata-Version: 2.1
Name: tkmail
Version: 1.1
Summary: Send email with smtp setup (with retry smtp)
Home-page: https://github.com/dotuan0601/tkemail
Author: tuan.dv
Author-email: tuan.dv@teko.vn
License: MIT
Download-URL: https://pypi.org/project/tkmail/
Keywords: email,Email,SendEmail,Send Email,send email
Platform: UNKNOWN
Description-Content-Type: text/markdown

Tool send email via SMTP

Example code:
subject = 'subject here'
content = 'html content or plain content here'
cc = 'cc here or None'
bcc = 'bcc here or None'

from_addr = "send email from email"
to_addr = 'send email to email'

email_obj = Email('smtp.gmail.com', 587, 'smtp login username', 'smtp login pwd')
email_obj.send_mail(from_addr, to_addr, subject, content, cc, bcc)

No history

