Send Email using SMTP on AllSync

First, you need to have allsync account, contact support@allsync.io to request for a test account, you will get tenant Id and API Token

1. Configure SMTP information on your tenant account

2. This is API detail to send email:

Url: https://api.allsync.io/Tenant/{tenant_id}/SendMail

Method: POST

Header:

tenantId = {tenant_id}

Authorization = Bearer Token

Token = {your tenant token}

Payload:

{
"subject": "Welcome to AllSync.IO",
"toEmails": [
"support@allsync.io"
],
"data": "data body"
}
Back to blog