Send a transactional email
Learn how to send a transactional email for an existing template and adding dynamic contentÂ
Transactional emails are used for all non-promotional emails; send them when the user has created an account, when they have made an order, when request a new password…
What you will learn from this tutorial
In this tutorial you will learn how to :
- Send a basic transactional email with a dummy HTML content.
- Send a transactional email where we’ll insert dynamic contact attributes (ex. contact name, address)
Requirements
Get your API keys from your settings (SMTP & API).
If you are the new to the API, read more about how the api works.
Send a transactional email using a basic HTML content
Let’s assume we would like to send the following basic email.
HTML Content | <html ><head></head><body><p>Hello,</p> This is my first transactional email sent from kasplo.</p><body></html> |
Email Subject | "Hello Worldl" |
Sender name | "Sender Alex" |
Sender email | "email": "senderalex@example.com" |
Recipient name | "John Doe" |
Recipient email | "email": "johndoe@example.com". |
The HTTP request to send using cURL is the following :
curl --request POST \
--url https://api.kasplo.in/send-mail \
--header 'accept: application/json' \
--header 'api-key: Bearer YOUR_API_KEY' \
--header 'content-type: application/json' \
--data '{
--email:{
"from":"senderalex@example.com",
"fromName": "Sender Alex",
"replyTo":[],
"subject": "Hello World"
"text": "",
"html": "html>Hello,
This is my first transactional email sent from kasplo.