Skip to content

dhesend-org/dhesend-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dhesend Python SDK

A Python library for interacting with the Dhesend API, designed to make email sending simple and efficient. For full documentation, visit the official website.

Installation

Install the SDK using your preferred package manager:

pip install dhesend

Examples

Discover example integrations with various frameworks:

Setup

  1. Obtain an API Key:
    Get your API key from the Dhesend Dashboard.

  2. Initialize the SDK:
    Use your API key to create an instance of the Dhesend client.

from dhesend import Dhesend

dhesend = Dhesend('your_api_key_here'); # Replace with your actual API key

Usage

Sending Your First Email

from dhesend import Dhesend, SendEmailPayload

dhesend = Dhesend("your-apikey")

params: SendEmailPayload = {
    "from": "Dhesend <example@domain.com>",
    "to": ['example@dhesend.com'],
    "subject": 'Welcome to Dhesend',
    "textBody": 'Have a nice day!',
}

response = dhesend.Email.send(params)
print(response)

Sending Emails with Custom HTML

from dhesend import Dhesend, SendEmailPayload

dhesend = Dhesend("your-apikey")

params: SendEmailPayload = {
    "from": "Dhesend <example@domain.com>",
    "to": ['example@dhesend.com'],
    "subject": 'Welcome to Dhesend',
    "htmlBody": '<strong>Have a nice day!</strong>',
}

response = dhesend.Email.send(params)
print(response)

License

MIT License.

About

Dhesend Official Python SDK

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages