thundermail


Namethundermail JSON
Version 2.1.1 PyPI version JSON
download
home_pagehttps://github.com/shubhojit-mitra-dev/thundermail-python-sdk/
SummaryThundermail Python SDK
upload_time2024-06-14 09:15:26
maintainerNone
docs_urlNone
authorshubhojit-mitra-dev
requires_python>=3.7
licenseNone
keywords email email platform
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/shubhojit-mitra-dev/thundermail-python-sdk/",
    "name": "thundermail",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "email, email platform",
    "author": "shubhojit-mitra-dev",
    "author_email": "mitrashubhojit2005@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/3a/93/5c7beef8831804141e049574ae6736f5e479a5ec52b42a4f332896bd13af/thundermail-2.1.1.tar.gz",
    "platform": null,
    "description": "# Thundermail Python SDK\nA Python package for the Thunder Mail API.\n\n## Install\n\n```bash\npip install thundermail\n```\n\n## Setup\n\nFirst, you need to get an API key, which is available in the [Thunder Mail Dashboard](https://thundermail.vercel.app/dashboard).\n\n```python\nfrom thundermail import ThunderMail;\nthundermail = Thundermail('tim_12345678');\n```\n\n## Usage\n\nSend your first email:\n\n```python\nemail_data = {\n    'from' = 'you@example.com',\n    'to' = 'user@google.com',\n    'subject' = 'hello world',\n    'html' = '<strong>it works!</strong>'\n}\nresponse = thundermail.send(**email_data)\n```\n\n\n## License\n\nMIT License\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Thundermail Python SDK",
    "version": "2.1.1",
    "project_urls": {
        "Homepage": "https://github.com/shubhojit-mitra-dev/thundermail-python-sdk/"
    },
    "split_keywords": [
        "email",
        " email platform"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8918ba50c34ddce77dc1e0a757feed0219727387e95d3b9e496fd8f02007628e",
                "md5": "7b57d42903a2c71b96ba868e7054a1f0",
                "sha256": "208d5f92b47c9368a4d12b267b00a220667aed2da526856aeac40370e7d849ca"
            },
            "downloads": -1,
            "filename": "thundermail-2.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7b57d42903a2c71b96ba868e7054a1f0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 5689,
            "upload_time": "2024-06-14T09:15:00",
            "upload_time_iso_8601": "2024-06-14T09:15:00.363723Z",
            "url": "https://files.pythonhosted.org/packages/89/18/ba50c34ddce77dc1e0a757feed0219727387e95d3b9e496fd8f02007628e/thundermail-2.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a935c7beef8831804141e049574ae6736f5e479a5ec52b42a4f332896bd13af",
                "md5": "cbc37db20656adc71482a15217f92a82",
                "sha256": "1e92f30fc51288ea267238d017ddffb74633c4aa8a8150e61771a5d6e125154a"
            },
            "downloads": -1,
            "filename": "thundermail-2.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "cbc37db20656adc71482a15217f92a82",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 5071,
            "upload_time": "2024-06-14T09:15:26",
            "upload_time_iso_8601": "2024-06-14T09:15:26.584879Z",
            "url": "https://files.pythonhosted.org/packages/3a/93/5c7beef8831804141e049574ae6736f5e479a5ec52b42a4f332896bd13af/thundermail-2.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-14 09:15:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "shubhojit-mitra-dev",
    "github_project": "thundermail-python-sdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "thundermail"
}
        
Elapsed time: 4.45150s