Skip to content

Commit 35f7699

Browse files
synchronized all documentation to remove cancel.
1 parent d3e29c6 commit 35f7699

File tree

8 files changed

+10
-18
lines changed

8 files changed

+10
-18
lines changed

articles/communication-services/quickstarts/email/includes/send-email-java.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ EmailSendResult returns the following status on the email operation performed.
3636
| NOT_STARTED | We're not sending this status from our service at this time. |
3737
| IN_PROGRESS | The email send operation is currently in progress and being processed. |
3838
| SUCCESSFULLY_COMPLETED | The email send operation has completed without error and the email is out for delivery. Any detailed status about the email delivery beyond this stage can be obtained either through Azure Monitor or through Azure Event Grid. [Learn how to subscribe to email events](../handle-email-events.md) |
39-
| FAILED | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation. |
40-
| USER_CANCELLED | The email send operation was canceled before it could complete. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation. |
39+
| FAILED | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure. |
4140

4241
## Prerequisites
4342

articles/communication-services/quickstarts/email/includes/send-email-js.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ EmailSendResult returns the following status on the email operation performed.
4040
| isStarted | Returns true if the email send operation is currently in progress and being processed. |
4141
| isCompleted | Returns true if the email send operation has completed without error and the email is out for delivery. Any detailed status about the email delivery beyond this stage can be obtained either through Azure Monitor or through Azure Event Grid. [Learn how to subscribe to email events](../handle-email-events.md) |
4242
| result | Property that exists if the email send operation has concluded. |
43-
| error | Property that exists if the email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation. |
44-
| isCanceled | True if the email send operation was canceled before it could complete. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation.|
43+
| error | Property that exists if the email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure. |
4544

4645
## Prerequisites
4746

articles/communication-services/quickstarts/email/includes/send-email-net.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ EmailSendResult returns the following status on the email operation performed.
4242
| NotStarted | We're not sending this status from our service at this time. |
4343
| Running | The email send operation is currently in progress and being processed. |
4444
| Succeeded | The email send operation has completed without error and the email is out for delivery. Any detailed status about the email delivery beyond this stage can be obtained either through Azure Monitor or through Azure Event Grid. [Learn how to subscribe to email events](../handle-email-events.md) |
45-
| Failed | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation. |
46-
| Canceled | The email send operation was canceled before it could complete. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation.|
45+
| Failed | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure. |
4746

4847
## Prerequisites
4948

articles/communication-services/quickstarts/email/includes/send-email-python.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ message = {
7171
response = {
7272
"id": "str", # The unique id of the operation. Uses a UUID. Required.
7373
"status": "str", # Status of operation. Required. Known values are:
74-
"NotStarted", "Running", "Succeeded", "Failed", and "Canceled".
74+
"NotStarted", "Running", "Succeeded", and "Failed".
7575
"error": {
7676
"additionalInfo": [
7777
{
@@ -95,8 +95,7 @@ The `response.status` values are explained further in the following table.
9595
| ----------- | ------------|
9696
| InProgress | The email send operation is currently in progress and being processed. |
9797
| Succeeded | The email send operation has completed without error and the email is out for delivery. Any detailed status about the email delivery beyond this stage can be obtained either through Azure Monitor or through Azure Event Grid. [Learn how to subscribe to email events](../handle-email-events.md) |
98-
| Failed | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation. |
99-
| Canceled | The email send operation was canceled before it could complete. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation.|
98+
| Failed | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure. |
10099

101100
## Prerequisites
102101

articles/communication-services/quickstarts/email/send-email-advanced/includes/prepend-java.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ EmailSendResult returns the following status on the email operation performed.
3535
| NOT_STARTED | We're not sending this status from our service at this time. |
3636
| IN_PROGRESS | The email send operation is currently in progress and being processed. |
3737
| SUCCESSFULLY_COMPLETED | The email send operation has completed without error and the email is out for delivery. Any detailed status about the email delivery beyond this stage can be obtained either through Azure Monitor or through Azure Event Grid. [Learn how to subscribe to email events](../../handle-email-events.md) |
38-
| FAILED | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation. |
39-
| USER_CANCELLED | The email send operation was canceled before it could complete. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation. |
38+
| FAILED | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure. |
4039

4140
## Prerequisites
4241

articles/communication-services/quickstarts/email/send-email-advanced/includes/prepend-js.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ EmailSendResult returns the following status on the email operation performed.
3939
| isStarted | Returns true if the email send operation is currently in progress and being processed. |
4040
| isCompleted | Returns true if the email send operation has completed without error and the email is out for delivery. Any detailed status about the email delivery beyond this stage can be obtained either through Azure Monitor or through Azure Event Grid. [Learn how to subscribe to email events](../../handle-email-events.md) |
4141
| result | Property that exists if the email send operation has concluded. |
42-
| error | Property that exists if the email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation. |
43-
| isCanceled | True if the email send operation was canceled before it could complete. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation.|
42+
| error | Property that exists if the email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure. |
4443

4544
## Prerequisites
4645

articles/communication-services/quickstarts/email/send-email-advanced/includes/prepend-net.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ EmailSendResult returns the following status on the email operation performed.
4242
| NotStarted | We're not sending this status from our service at this time. |
4343
| Running | The email send operation is currently in progress and being processed. |
4444
| Succeeded | The email send operation has completed without error and the email is out for delivery. Any detailed status about the email delivery beyond this stage can be obtained either through Azure Monitor or through Azure Event Grid. [Learn how to subscribe to email events](../../handle-email-events.md) |
45-
| Failed | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation. |
46-
| Canceled | The email send operation was canceled before it could complete. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation.|
45+
| Failed | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure. |
4746

4847
## Prerequisites
4948

articles/communication-services/quickstarts/email/send-email-advanced/includes/prepend-python.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ message = {
7070
response = {
7171
"id": "str", # The unique id of the operation. Uses a UUID. Required.
7272
"status": "str", # Status of operation. Required. Known values are:
73-
"NotStarted", "Running", "Succeeded", "Failed", and "Canceled".
73+
"NotStarted", "Running", "Succeeded", and "Failed".
7474
"error": {
7575
"additionalInfo": [
7676
{
@@ -94,8 +94,7 @@ The `response.status` values are explained further in the following table.
9494
| ----------- | ------------|
9595
| InProgress | The email send operation is currently in progress and being processed. |
9696
| Succeeded | The email send operation has completed without error and the email is out for delivery. Any detailed status about the email delivery beyond this stage can be obtained either through Azure Monitor or through Azure Event Grid. [Learn how to subscribe to email events](../../handle-email-events.md) |
97-
| Failed | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation. |
98-
| Canceled | The email send operation was canceled before it could complete. The email wasn't sent. The result contains an error object with more details on the reason for failure or cancellation.|
97+
| Failed | The email send operation wasn't successful and encountered an error. The email wasn't sent. The result contains an error object with more details on the reason for failure. |
9998

10099
## Prerequisites
101100

0 commit comments

Comments
 (0)