POST api/EmailNotification/SendEmail

Request Information

URI Parameters

None.

Body Parameters

mdlEmail
NameDescriptionTypeAdditional information
Body

string

None.

Subject

string

None.

Sent_To

string

None.

Sent_Cc

string

None.

Sent_Bcc

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Body": "sample string 1",
  "Subject": "sample string 2",
  "Sent_To": "sample string 3",
  "Sent_Cc": "sample string 4",
  "Sent_Bcc": "sample string 5"
}

application/xml, text/xml

Sample:
<mdlEmail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS_WEB_API.Models">
  <Body>sample string 1</Body>
  <Sent_Bcc>sample string 5</Sent_Bcc>
  <Sent_Cc>sample string 4</Sent_Cc>
  <Sent_To>sample string 3</Sent_To>
  <Subject>sample string 2</Subject>
</mdlEmail>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.