POST api/Mail/sendMail

Request Information

URI Parameters

None.

Body Parameters

mail
NameDescriptionTypeAdditional information
subject

string

None.

body

string

None.

to

string

None.

from

string

None.

Request Formats

application/json, text/json

Sample:
{
  "subject": "sample string 1",
  "body": "sample string 2",
  "to": "sample string 3",
  "from": "sample string 4"
}

application/xml, text/xml

Sample:
<mail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WSMotorAlertaCatastral.Controllers">
  <body>sample string 2</body>
  <from>sample string 4</from>
  <subject>sample string 1</subject>
  <to>sample string 3</to>
</mail>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.