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 😅
- Host: GitHub
- URL: https://github.com/shubhojit-mitra-dev/thundermail-python-sdk
- Owner: shubhojit-mitra-dev
- License: mit
- Created: 2024-06-09T06:21:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-29T23:35:06.000Z (10 months ago)
- Last Synced: 2025-07-03T05:07:13.669Z (6 months ago)
- Topics: open-source, package, pip3, pypi, python3
- Language: Python
- Homepage: https://pypi.org/project/thundermail/
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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