A Python package for the Thunder Mail API.
pip install thundermailFirst, you need to get an API key, which is available in the Thunder Mail Dashboard.
from thundermail import ThunderMail;
thundermail = Thundermail('tim_12345678');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)MIT License