Authorization: Bearer ********************
{"pageNo":1,
"pageSize":10,
"params":
{
"recipient": "example@example.com",
"carbonCopy": "cc@example.com",
"content": "这是邮件的具体内容",
"sendTime": "2025-03-01T12:30:00",
"sendStatus": 1,
"sendChannel": "EmailServiceA"
}
}
curl --location --request POST '/api/system/emailRecord/page' \
--header 'Content-Type: application/json' \
--data-raw '{"pageNo":1,
"pageSize":10,
"params":
{
"recipient": "example@example.com",
"carbonCopy": "cc@example.com",
"content": "这是邮件的具体内容",
"sendTime": "2025-03-01T12:30:00",
"sendStatus": 1,
"sendChannel": "EmailServiceA"
}
}'
{
"success": false,
"errCode": "",
"errMsg": "",
"traceId": "",
"data": {
"records": [
{
"id": 0,
"recipient": "",
"carbonCopy": "",
"content": "",
"sendTime": "",
"sendStatus": 0,
"sendChannel": ""
}
],
"total": 0,
"current": 0,
"size": 0
}
}