Skip to main content

Hello!

Create ticket

Logout

How can we help?

Search

Home / Getting Started / / Send email with template

Getting Started

Send email with template

Method: POST

https://api-dev.enotifiers.com/api/V1/service/emailTemplate/send

Request details

API Parameters
Parameter Description Example
emailName
string
Name of the email. Order Confirmation Email
variables
{} Dictionary
Variables to be used in the email template. "orderNumber": "ORD123456"
to
string
Email address of the recipient. customer@example.com
subject
string
Subject of the email. Order Confirmation for Your Recent Purchase
templateName
string
Name of the email template to be used. order_confirmation_template
templateCategory
string
Category of the email template. Order Confirmations

Library and SDK

Tabbed Interface
curl --location 'https://api-dev.enotifiers.com/api/V1/service/emailTemplate/send' \
          --header 'accept: application/json' \
          --header 'Content-Type: application/json' \
          --header 'Authorization: Basic NjMxZTc2NzVkY2E0NDVjYTg5ZjcwYTMxNTVkYWY5YzI6YWJhMTZlZTE5YWVlNDU2ODk3YmJiMmRkM2M3OGE3NmU=' \
          --data '{
            "emailName": "string",
            "variables": {},
            "to": "string",
            "subject": "string",
            "templateName": "string",
            "templateCategory": "string"
          }''

Success response details

API Parameters
Parameter Description Example
status
String
Indicates the success status
of the API operation
success
code
String
Provides the status code indicating
the success of the request.
200
message
String
A descriptive message confirming
the success of the operation.
It states that the email was sent successfully.
data.MessageId
String
Unique identifier for the sent email message. "0109018e742e100c-d0df344d-7abe-41c3-a583-143d624fa947-000000"

Failure response details

API Parameters
Parameter Description Example
status
String
Indicates the overall status
of the API request.
failed
code
String
Provides the HTTP status code
corresponding to the failure.
400
message
String
Provides the reason for the error Error in Email
data.error
String
Specific error message providing
more context about the issue.
Invalid Email
Document