POST api/NGO/Mailsending

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
user
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "toaddress": "sample string 1",
  "subject": "sample string 2",
  "body": "sample string 3",
  "Status": 4,
  "Message": "sample string 5"
}

application/xml, text/xml

Sample:
<MailData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NGO.Models">
  <Message>sample string 5</Message>
  <Status>4</Status>
  <body>sample string 3</body>
  <subject>sample string 2</subject>
  <toaddress>sample string 1</toaddress>
</MailData>

application/x-www-form-urlencoded

Sample:

Sample not available.