RescheduledEmail
Reschedules a scheduled email.
Stored Procedure-Specific Information
To run this procedure, you must specify the Id and SendAt input parameters. For example:
EXEC RescheduledEmail Id = '515abc', SendAt = '2025-08-01T10:10:10.23'
Input
| Name | Type | Required | Description |
| Id | String | True | The Id of the scheduled email, as returned by a messages/send call or messages/list-scheduled. |
| SendAt | Datetime | True | The new UTC timestamp when the message will be sent. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the operation was successful. |
| Id | String | The unique Id of the message. |
| CreatedAt | Datetime | The UTC timestamp when the message was created. |
| SendAt | Datetime | The UTC timestamp when the message will be sent. |
| FromEmail | String | The sender's email address. |
| To | String | The recipient's email address. |
| Subject | String | The subject of the email. |