POST api/StudyHub2/SaveEmailQueue
Request Information
URI Parameters
None.
Body Parameters
Collection of EmailQueueRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Subject | string |
None. |
|
| From | string |
None. |
|
| To | string |
None. |
|
| Content | string |
None. |
|
| Cc | string |
None. |
|
| IsSent | boolean |
None. |
|
| SentBy | string |
None. |
|
| MailType | boolean |
None. |
|
| Attachment1 | string |
None. |
|
| ReplyTo | string |
None. |
|
| Attachment2 | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Subject": "sample string 1",
"From": "sample string 2",
"To": "sample string 3",
"Content": "sample string 4",
"Cc": "sample string 5",
"IsSent": true,
"SentBy": "sample string 7",
"MailType": true,
"Attachment1": "sample string 9",
"ReplyTo": "sample string 10",
"Attachment2": "sample string 11"
},
{
"Subject": "sample string 1",
"From": "sample string 2",
"To": "sample string 3",
"Content": "sample string 4",
"Cc": "sample string 5",
"IsSent": true,
"SentBy": "sample string 7",
"MailType": true,
"Attachment1": "sample string 9",
"ReplyTo": "sample string 10",
"Attachment2": "sample string 11"
}
]
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Info | ReturnResult |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Info": {
"Status": true,
"Message": "sample string 2",
"AdditionalData": {},
"ObjAppResponseMessage": {
"Status": true,
"Message": "sample string 2",
"AdditionalData": "sample string 3"
}
},
"Data": {}
}