Metadata-Version: 2.1
Name: thundermail
Version: 2.1.0
Summary: Thundermail Python SDK
Home-page: https://github.com/shubhojit-mitra-dev/thundermail-python-sdk/
Author: shubhojit-mitra-dev
Author-email: mitrashubhojit2005@gmail.com
License: UNKNOWN
Keywords: email,email platform
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: requests (==2.31.0)
Requires-Dist: typing-extensions

# 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' = '<strong>it works!</strong>'
}
response = thundermail.send(**email_data)
```


## License

MIT License


