POST api/Email/SendEmail
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"CC": "sample string 1",
"Subject": "sample string 2",
"IsBodyHtml": true,
"Sender": "sample string 4",
"Recipient": "sample string 5",
"Body": "sample string 6",
"Attachments": []
}
application/xml, text/xml
Sample:
<EmailMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConnectAPI.Models"> <Attachments xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Net.Mail" /> <Body>sample string 6</Body> <CC>sample string 1</CC> <IsBodyHtml>true</IsBodyHtml> <Recipient>sample string 5</Recipient> <Sender>sample string 4</Sender> <Subject>sample string 2</Subject> </EmailMessage>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>