POST Account/SendEmail

Request Information

URI Parameters

None.

Body Parameters

EmailInput
NameDescriptionTypeAdditional information
toAddr

string

None.

msgSubject

string

None.

msgBody

string

None.

filePath

string

None.

shopId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "toAddr": "sample string 1",
  "msgSubject": "sample string 2",
  "msgBody": "sample string 3",
  "filePath": "sample string 4",
  "shopId": 5
}

application/xml, text/xml

Sample:
<EmailInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AstroVed.Api.Logic">
  <filePath>sample string 4</filePath>
  <msgBody>sample string 3</msgBody>
  <msgSubject>sample string 2</msgSubject>
  <shopId>5</shopId>
  <toAddr>sample string 1</toAddr>
</EmailInput>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'EmailInput'.

Response Information

Resource Description

None.