RescheduledEmail
Reschedules a scheduled email.
Stored Procedure Specific Information
Id and SendAt inputs are required. For example:
exec RescheduledEmail Id = '515abc', SendAt = '2025-08-01T10:10:10.23'
Input
| Name | Type | Required | Description |
| Id | String | True | A scheduled email id, as returned by any of the messages/send calls or messages/list-scheduled. |
| SendAt | Datetime | True | The new UTC timestamp when the message should sent. |
Result Set Columns
| Name | Type | Description |
| Success | String | Whether the operation was successful. |
| Id | String | the message's unique id. |
| CreatedAt | Datetime | the UTC timestamp when the message was created. |
| SendAt | Datetime | the UTC timestamp when the message will be sent. |
| FromEmail | String | The sending status of the recipient. |
| To | String | The email's sender address. |
| Subject | String | the email's subject |