POST api/System/SendMail
发送邮件
Request Information
URI Parameters
None.
Body Parameters
SendMailRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Platform |
平台号,由接口方提供 |
string |
None. |
| Title |
标题 长度不超过100 |
string |
None. |
| Content |
内容 长度不超过1000 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"platform": "sample string 1",
"title": "sample string 2",
"content": "sample string 3"
}
Response Information
Resource Description
发送邮件
WebResultResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Result |
返回结果 |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": true
}