Skip to content

RespondlyAI/thundermail-python-sdk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Thundermail Python SDK

A Python package for the Thunder Mail API.

Install

pip install thundermail

Setup

First, you need to get an API key, which is available in the Thunder Mail Dashboard.

from thundermail import ThunderMail;
thundermail = Thundermail('tim_12345678');

Usage

Send your first email:

email_data = {
    'from' = 'you@example.com',
    'to' = 'user@google.com',
    'subject' = 'hello world',
    'html' = '<strong>it works!</strong>'
}
response = thundermail.send(**email_data)

License

MIT License

About

Open Source Python SDK for Thundermail

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 100.0%