A package for sending and managing emails with the Unsend API
Project description
Unsend Python Package
The Unsend Python package lets you interact with the Unsend API to send and manage emails as well as domains. This README provides a quick guide on using the package to send emails and retrieve email information.
Installation
To install the Unsend package, you can use pip:
pip install unsendcommunity
Usage
Below is an example of how to use the Unsend package to send an email and retrieve email information.
Initialize
Change the URL accordingly if you are using self self-hosted version of Unsend. The default URL will be https://app.unsend.dev.
from unsendcommunity import Unsend
# Initialize the Unsend client
api_key = 'us_cpm5q0d77f_bea486174ee656b6d5f12d415871185c'
client = Unsend(key=api_key, url='https://app.unsend.dev')
Sending Emails
To send an email you will need to define the payload. After definition, you can use the .send_emails
method to send emails with the payload as a parameter.
payload = {
"to": "youremail@gmail.com",
"from": "hello@domainname.com",
"subject": "Unsend test email",
"text": "hello,\n\nUnsend is the best open source sending platform",
"html": "<p>hello,</p><p>Unsend is the best open source sending platform</p><p>check out <a href='https://unsend.dev'>unsend.dev</a></p>",
}```
# Send the email
response = client.send_email(payload)
print("Send Email Response:", response)
Retrieve Emails using the id
The email will be retrieved using the ID you get after sending the mail.
email_id = 'email-id-from-unsend'
email_response = client.get_email(email_id)
print("Get Email Response:", email_response)
The sample response of get_email
is shown below:
{
"data": {
"id": "clz6iydbu000d8kmcjnf4aimv",
"teamId": 1,
"to": [
"harsh121102@gmail.com"
],
"from": "hello@mail.harshbhat.me",
"subject": "Unsend test email",
"html": "<p>hello,</p><p>Unsend is the best open source sending platform</p><p>check out <a href='https://unsend.dev'>unsend.dev</a></p>",
"text": "hello,\n\nUnsend is the best open source sending platform",
"createdAt": "2024-07-29T05:04:21.498Z",
"updatedAt": "2024-07-29T05:04:27.130Z",
"emailEvents": [
{
"emailId": "clz6iydbu000d8kmcjnf4aimv",
"status": "FAILED",
"createdAt": "2024-07-29T05:04:27.124Z",
"data": {
"error": "MessageRejected: Email address is not verified. The following identities failed the check in region US-EAST-1: harsh121102@gmail.com"
}
}
]
},
"error": null
}
Retrieve domain information
Retrieves domain information Domains that are associated with this account will be displayed with their detailed information.
domain_response = client.get_domain()
print("Get Domain Response:", domain_response)
Sample response of the get_domain
method
{
"data": [
{
"id": 1,
"name": "mail.harshbhat.me",
"teamId": 1,
"status": "SUCCESS",
"region": "us-east-1",
"clickTracking": false,
"openTracking": false,
"publicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5dFn1FdRfU1243apb5aMtxVSihb0QJdoJopzr3JmKLQSsyrnwKdX7sfQ8v9Az0Xh0GTIyTUGVwHQdxM79gewSn7MyCVzteGBzoQMpuMzDaIoP5lprvxap1D1iosMJYztGdAM4694R+GuU+XSI/0OasDDlYYo7Ua8gYO8LLAHrxQrtvUOgCvbOQYfkz6zQUu9B0Zba+xNp04klHHcB32Ik2Tn6oWFTpvxbTpfFXOq94uB1TxqeBeEGAdMaQu/PpiB8eumKhxHwIA3vJeYfJ3YbLzI+NbnBAlAEMXOmrX59KvVaEKgtTHIQ//yT8gkDtasGvO6uengi8D53MkLO6/ScwIDAQAB",
"dkimStatus": "SUCCESS",
"spfDetails": "SUCCESS",
"dmarcAdded": false,
"errorMessage": null,
"subdomain": "mail",
"isVerifying": false,
"createdAt": "2024-07-26T05:52:17.199Z",
"updatedAt": "2024-07-26T05:57:27.790Z"
}
],
"error": null
}
Note: This is not an official unsend library.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file UnsendCommunity-0.3.2.tar.gz
.
File metadata
- Download URL: UnsendCommunity-0.3.2.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49e0057df2b36a98a02612b68a442471cffc17f5d6afdc150441f2bda29cb14a |
|
MD5 | 5de753d5213fd07fbd1f6ca8696ada0b |
|
BLAKE2b-256 | 7da54126c26b01076a9bff7fa306afa120e9d48ce72a42ea536b1ee73d1044ba |
File details
Details for the file UnsendCommunity-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: UnsendCommunity-0.3.2-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77d3e38028f52c4d7eba1eb6766610e5961480def77f3ca7a0147bc6b3a25207 |
|
MD5 | d6fbd22f432ec7dfdd7bd10b8db7d59a |
|
BLAKE2b-256 | 9710395872d16dbc164e3ebaeacf0feeced771a59fa64267f32e54ed2b2b4174 |