POST api/EmailReselling/Send

Sends emails to a predefined reselling list

Request Information

URI Parameters

None.

Body Parameters

Email reselling request containing the recipient list, subject, and body

EmailResellingRequest
NameDescriptionTypeAdditional information
ResellingList

Collection of string

None.

Subject

string

None.

Body

string

None.

IsHtml

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ResellingList": [
    "sample string 1",
    "sample string 2"
  ],
  "Subject": "sample string 1",
  "Body": "sample string 2",
  "IsHtml": true
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

EmailResponse indicating success or failure

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"
  ]
}