Skip to main content

Message Provider - Send emails

Message provider service email support via internal SMTP provider.

Key endpoints

SmtpProxy

  • [POST] https://[HostName]/api/asol/mp/api/v1/SmtpProxy/SendEmail
    • Send a new email directly into recipents via internal configured SMTP provider.

Example for send email via internal SMTP

{
"targetEmails": [
"anybody@example.com",
"anybody2@example.com"
],
"subject": "stringify json or content string",
"body": "stringify json or content string",
"sourceIdOrCode": "your message source code",
"templateIdOrCode": "your message template code",
"templateLanguage": "en-US"
}