PUT api/2.0/mail/messages/simpleSend
Name |
Description |
Type |
Example |
from
sent in body
|
|
string
|
some text
|
to
sent in body
|
|
System.Collections.Generic.List`1[System.String]
|
|
subject
sent in body
|
|
string
|
some text
|
body
sent in body
|
|
string
|
some text
|
isReceipt
sent in body
|
|
Bool value
|
true
|
PUT api/2.0/mail/messages/simplesend
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"from": "some text",
"to": [
"some text"
],
"subject": "some text",
"body": "some text",
"isReceipt": true
}
This method doesn't return any data.