POST api/FeaturedCorporates/SendEmailCompany

Request Information

URI Parameters

None.

Body Parameters

FeaturedCorporatesEmailModel
NameDescriptionTypeAdditional information
emlSubject

string

None.

emlBody

string

None.

emlTo

string

None.

emlToName

string

None.

emlFrom

string

None.

emlFromName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "emlSubject": "sample string 1",
  "emlBody": "sample string 2",
  "emlTo": "sample string 3",
  "emlToName": "sample string 4",
  "emlFrom": "sample string 5",
  "emlFromName": "sample string 6"
}

application/octet-stream, multipart/form-data

Sample:
{"emlSubject":"sample string 1","emlBody":"sample string 2","emlTo":"sample string 3","emlToName":"sample string 4","emlFrom":"sample string 5","emlFromName":"sample string 6"}

application/xml, text/xml

Sample:
<FeaturedCorporates.FeaturedCorporatesEmailModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tenderjoAPI.Models">
  <emlBody>sample string 2</emlBody>
  <emlFrom>sample string 5</emlFrom>
  <emlFromName>sample string 6</emlFromName>
  <emlSubject>sample string 1</emlSubject>
  <emlTo>sample string 3</emlTo>
  <emlToName>sample string 4</emlToName>
</FeaturedCorporates.FeaturedCorporatesEmailModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/octet-stream, multipart/form-data, application/xml, text/xml

Sample:

Sample not available.