POST api/sendgpmail
Request Information
URI Parameters
None.
Body Parameters
SendMailRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| to | string |
None. |
|
| subject | string |
None. |
|
| body | string |
None. |
|
| from_name | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"to": "sample string 1",
"subject": "sample string 2",
"body": "sample string 3",
"from_name": "sample string 4"
}
application/xml, text/xml
Sample:
<SendMailRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/dbKey2h.Models"> <body>sample string 3</body> <from_name>sample string 4</from_name> <subject>sample string 2</subject> <to>sample string 1</to> </SendMailRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.