Save Email
This sends Email to an institutions' customers
Overview
To send Email you first need to build the complete save Email URL by passing version in the path and authToken to the request params, then you make a post request with InstitutionCode, MfbCode, EmailFrom, EmailTo, Subject, and Message in the request body.
Required Payload
Save Email required payload and their descriptions.
Name | Data Type | Description | Mandatory/Optional |
---|---|---|---|
InstitutionCode | String | MFB's 6 digit institution code | Mandatory |
MfbCode | String | MFB's 3 digit institution code | Optional |
emailFrom | String | The senderid email | Mandatory |
emailTo | String | The receiver's email address | Mandatory |
Subject | String | Subject of mail | Mandatory |
Message | String | Body of message | Mandatory |
Expected Request
[
{
}
]
If the request is successful, it returns a status code of 200 with a response body.
Expected Response
{
"Status": true,
"ErrorMessage": ""
}
You can check out API reference to Save Email
Updated 6 months ago