POST api/EmailReselling/Test

Sends a test email to verify email configuration

Request Information

URI Parameters

None.

Body Parameters

Test email request containing the test email address

EmailTestRequest
NameDescriptionTypeAdditional information
TestEmail

string

None.

Request Formats

application/json, text/json

Sample:
{
  "TestEmail": "sample string 1"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

EmailResponse indicating if the test was successful

EmailResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

ValidEmailsCount

integer

None.

ValidEmails

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "ValidEmailsCount": 3,
  "ValidEmails": [
    "sample string 1",
    "sample string 2"
  ]
}