Send Email
POST/sendEmail
This API can be used send an email from SSM.
The Authorization
must have Bearer
followed by Token
.
Note: Configure SMTP in SSM before using this API.
Mandatory params:
to
,
from
,
subject
,
body
Optional params:
cc
,bcc
Request
- multipart/form-data
Body
bodystring
Example:
test email body
ccstring
Example:
tim@saviynt.com
fromstring
Example:
john@saviynt.com
subjectstring
Example:
test email subject
tostring
Example:
john.doe@saviynt.com
Responses
- 200
Send Email
Response Headers
Date
string
Server
string
Set-Cookie
string
- application/json
- Schema
- Example (from schema)
- Send Email
Schema
errorCodestring
Example:
0
msgstring
Example:
Successful
{
"errorCode": "0",
"msg": "Successful"
}
{
"errorCode": "0",
"msg": "Successful"
}