An open API service indexing awesome lists of open source software.

https://github.com/shubhojit-mitra-dev/thundermail-python-sdk

Created an open source python package...Don't really consider this as Open Source Contribution 😅
https://github.com/shubhojit-mitra-dev/thundermail-python-sdk

open-source package pip3 pypi python3

Last synced: 4 months ago
JSON representation

Created an open source python package...Don't really consider this as Open Source Contribution 😅

Awesome Lists containing this project

README

          

# Thundermail Python SDK
A Python package for the Thunder Mail API.

## Install

```bash
pip install thundermail
```

## Setup

First, you need to get an API key, which is available in the [Thunder Mail Dashboard](https://thundermail.vercel.app/dashboard).

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

## Usage

Send your first email:

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

## License

MIT License