Name | zeptomail-python-api JSON |
Version |
0.1.1
JSON |
| download |
home_page | None |
Summary | Python client for the ZeptoMail API |
upload_time | 2025-02-26 20:11:40 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT License
Copyright (c) 2025 NamiLink Kft.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. |
keywords |
api
client
email
zeptomail
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# 📧 ZeptoMail Python API
[](https://pypi.org/project/zeptomail-python-api/)
[](https://pypi.org/project/zeptomail-python-api/)
[](https://github.com/NamiLinkLabs/zeptomail-python-api/blob/main/LICENSE)
[](https://pypi.org/project/zeptomail-python-api/)
A Python client for interacting with the ZeptoMail API.
> ⚠️ **DISCLAIMER**: This is an unofficial SDK. Namilink Kft is not affiliated with ZeptoMail or Zoho Corporation. This package is maintained independently and is not endorsed by ZeptoMail.
## ⚡ Installation
```bash
pip install zeptomail-python-api
```
Or with uv:
```bash
uv pip install zeptomail-python-api
```
## 🚀 Usage
```python
from zeptomail import ZeptoMail
# Initialize the client
client = ZeptoMail("your-api-key-here")
# Create a recipient
recipient = client.add_recipient("recipient@example.com", "Recipient Name")
# Send a simple email
response = client.send_email(
from_address="sender@example.com",
from_name="Sender Name",
to=[recipient],
subject="Test Email from ZeptoMail Python API",
html_body="<h1>Hello World!</h1><p>This is a test email sent using the ZeptoMail Python API.</p>",
text_body="Hello World! This is a test email sent using the ZeptoMail Python API."
)
print(f"Response: {response}")
```
## ✨ Features
- 📨 Send single emails
- 📊 Send batch emails with personalization
- 📎 Add attachments and inline images
- ⚙️ Customize MIME headers
- 🔍 Detailed error handling with solutions
## 🚧 Implementation Status
This library currently implements:
- ✅ Email Sending API
- ✅ Batch Email Sending API
Not yet implemented:
- ❌ Templates API
- ❌ Template Management API
Contributions to implement these additional APIs are welcome!
## 📝 License
MIT License - see the [LICENSE](LICENSE) file for details.
## 🤝 Contributing
Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/NamiLinkLabs/zeptomail-python-api/issues).
## 🔒 Security
For security issues, please email security@zeptomail.eu instead of using the issue tracker.
Raw data
{
"_id": null,
"home_page": null,
"name": "zeptomail-python-api",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "api, client, email, zeptomail",
"author": null,
"author_email": "Mate Valko <zeptomail@namilink.com>",
"download_url": "https://files.pythonhosted.org/packages/cf/ec/061024283e8cb2647ccaedb6ad95747334b9129b32f23fa6075cd87f354f/zeptomail_python_api-0.1.1.tar.gz",
"platform": null,
"description": "# \ud83d\udce7 ZeptoMail Python API\n\n[](https://pypi.org/project/zeptomail-python-api/)\n[](https://pypi.org/project/zeptomail-python-api/)\n[](https://github.com/NamiLinkLabs/zeptomail-python-api/blob/main/LICENSE)\n[](https://pypi.org/project/zeptomail-python-api/)\n\nA Python client for interacting with the ZeptoMail API.\n\n> \u26a0\ufe0f **DISCLAIMER**: This is an unofficial SDK. Namilink Kft is not affiliated with ZeptoMail or Zoho Corporation. This package is maintained independently and is not endorsed by ZeptoMail.\n\n## \u26a1 Installation\n\n```bash\npip install zeptomail-python-api\n```\n\nOr with uv:\n\n```bash\nuv pip install zeptomail-python-api\n```\n\n## \ud83d\ude80 Usage\n\n```python\nfrom zeptomail import ZeptoMail\n\n# Initialize the client\nclient = ZeptoMail(\"your-api-key-here\")\n\n# Create a recipient\nrecipient = client.add_recipient(\"recipient@example.com\", \"Recipient Name\")\n\n# Send a simple email\nresponse = client.send_email(\n from_address=\"sender@example.com\",\n from_name=\"Sender Name\",\n to=[recipient],\n subject=\"Test Email from ZeptoMail Python API\",\n html_body=\"<h1>Hello World!</h1><p>This is a test email sent using the ZeptoMail Python API.</p>\",\n text_body=\"Hello World! This is a test email sent using the ZeptoMail Python API.\"\n)\n\nprint(f\"Response: {response}\")\n```\n\n## \u2728 Features\n\n- \ud83d\udce8 Send single emails\n- \ud83d\udcca Send batch emails with personalization\n- \ud83d\udcce Add attachments and inline images\n- \u2699\ufe0f Customize MIME headers\n- \ud83d\udd0d Detailed error handling with solutions\n\n## \ud83d\udea7 Implementation Status\n\nThis library currently implements:\n- \u2705 Email Sending API\n- \u2705 Batch Email Sending API\n\nNot yet implemented:\n- \u274c Templates API\n- \u274c Template Management API\n\nContributions to implement these additional APIs are welcome!\n\n## \ud83d\udcdd License\n\nMIT License - see the [LICENSE](LICENSE) file for details.\n\n## \ud83e\udd1d Contributing\n\nContributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/NamiLinkLabs/zeptomail-python-api/issues).\n\n## \ud83d\udd12 Security\n\nFor security issues, please email security@zeptomail.eu instead of using the issue tracker.\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2025 NamiLink Kft.\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.",
"summary": "Python client for the ZeptoMail API",
"version": "0.1.1",
"project_urls": {
"Bug Tracker": "https://github.com/NamiLinkLabs/zeptomail-python-api/issues",
"Documentation": "https://github.com/NamiLinkLabs/zeptomail-python-api#readme",
"Homepage": "https://github.com/NamiLinkLabs/zeptomail-python-api"
},
"split_keywords": [
"api",
" client",
" email",
" zeptomail"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "671ca86148bbafa122af79ea7019b72c1525390dff0fe45b7111594e085442ea",
"md5": "3b79eaccf9779aeb3899d37fa8a7d150",
"sha256": "15b2e9cd4160c4105d52b7956d0a47134e363bf82e2723d69ec8be6bf923f065"
},
"downloads": -1,
"filename": "zeptomail_python_api-0.1.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3b79eaccf9779aeb3899d37fa8a7d150",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 8150,
"upload_time": "2025-02-26T20:11:38",
"upload_time_iso_8601": "2025-02-26T20:11:38.681689Z",
"url": "https://files.pythonhosted.org/packages/67/1c/a86148bbafa122af79ea7019b72c1525390dff0fe45b7111594e085442ea/zeptomail_python_api-0.1.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cfec061024283e8cb2647ccaedb6ad95747334b9129b32f23fa6075cd87f354f",
"md5": "0f817bdf6874baf8adda10b2d796a22e",
"sha256": "f95609ca44189b8bb7edcfc27f9e7a43940b7551fba7aacf710e6e4bd37969f4"
},
"downloads": -1,
"filename": "zeptomail_python_api-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "0f817bdf6874baf8adda10b2d796a22e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 65858,
"upload_time": "2025-02-26T20:11:40",
"upload_time_iso_8601": "2025-02-26T20:11:40.224496Z",
"url": "https://files.pythonhosted.org/packages/cf/ec/061024283e8cb2647ccaedb6ad95747334b9129b32f23fa6075cd87f354f/zeptomail_python_api-0.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-26 20:11:40",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "NamiLinkLabs",
"github_project": "zeptomail-python-api",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "zeptomail-python-api"
}