From 72f322a0177361b7672576a7e699a5b51bb2d5f8 Mon Sep 17 00:00:00 2001 From: Fanrui Sun Date: Sun, 3 Aug 2025 17:43:37 -0700 Subject: [PATCH 1/6] edit version and remove key elements --- sdk/communication/azure-communication-email/README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/sdk/communication/azure-communication-email/README.md b/sdk/communication/azure-communication-email/README.md index e185feb7723e..5d8feef2c170 100644 --- a/sdk/communication/azure-communication-email/README.md +++ b/sdk/communication/azure-communication-email/README.md @@ -51,22 +51,17 @@ and then include the direct dependency in the dependencies section without the v If you want to take dependency on a particular version of the library that is not present in the BOM, add the direct dependency to your project as follows. -[//]: # ({x-version-update-start;com.azure:azure-communication-email;current}) +[//]: # ({x-version-update-start;com.azure:azure-communication-email;dependency}) ```xml com.azure azure-communication-email - 1.2.0-beta.1 ``` [//]: # ({x-version-update-end}) -## Key concepts - -> More details coming soon. - ## Examples `EmailClient` provides the functionality to send email messages . From 55f104c5e0934aa7bc41c2ea6d499b8f9c12d7d5 Mon Sep 17 00:00:00 2001 From: Fanrui Sun Date: Sun, 3 Aug 2025 18:54:19 -0700 Subject: [PATCH 2/6] update tag --- sdk/communication/azure-communication-email/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/communication/azure-communication-email/README.md b/sdk/communication/azure-communication-email/README.md index 5d8feef2c170..71fcb8d75c28 100644 --- a/sdk/communication/azure-communication-email/README.md +++ b/sdk/communication/azure-communication-email/README.md @@ -51,7 +51,7 @@ and then include the direct dependency in the dependencies section without the v If you want to take dependency on a particular version of the library that is not present in the BOM, add the direct dependency to your project as follows. -[//]: # ({x-version-update-start;com.azure:azure-communication-email;dependency}) +[//]: # ({x-version-update-start;com.azure:azure-communication-email;current}) ```xml From 007187b056a0bafa5a6581d2ba030704730a0fcd Mon Sep 17 00:00:00 2001 From: Fanrui Sun Date: Tue, 5 Aug 2025 16:54:20 -0700 Subject: [PATCH 3/6] add version --- sdk/communication/azure-communication-email/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sdk/communication/azure-communication-email/README.md b/sdk/communication/azure-communication-email/README.md index 71fcb8d75c28..906c6b0a0c6f 100644 --- a/sdk/communication/azure-communication-email/README.md +++ b/sdk/communication/azure-communication-email/README.md @@ -49,18 +49,20 @@ and then include the direct dependency in the dependencies section without the v #### Include direct dependency If you want to take dependency on a particular version of the library that is not present in the BOM, -add the direct dependency to your project as follows. - -[//]: # ({x-version-update-start;com.azure:azure-communication-email;current}) +add the direct dependency to your project as follows. "VERSION" below should be the version number you want. Example: 1.0.22 ```xml com.azure azure-communication-email + VERSION ``` -[//]: # ({x-version-update-end}) + +## Key concepts + +> More details coming soon. ## Examples From 200e411b3495511c8a9dac428f9ce246312ff4ff Mon Sep 17 00:00:00 2001 From: Fanrui Sun Date: Thu, 7 Aug 2025 21:33:08 -0700 Subject: [PATCH 4/6] add square bracket --- sdk/communication/azure-communication-email/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sdk/communication/azure-communication-email/README.md b/sdk/communication/azure-communication-email/README.md index 906c6b0a0c6f..818c83b9d2b6 100644 --- a/sdk/communication/azure-communication-email/README.md +++ b/sdk/communication/azure-communication-email/README.md @@ -55,11 +55,10 @@ add the direct dependency to your project as follows. "VERSION" below should be com.azure azure-communication-email - VERSION + [VERSION] ``` - ## Key concepts > More details coming soon. From 4f43c7aa5c894c8636da15f55523314b2d221607 Mon Sep 17 00:00:00 2001 From: Fanrui Sun Date: Mon, 11 Aug 2025 09:58:41 -0700 Subject: [PATCH 5/6] Add key concepts --- sdk/communication/azure-communication-email/README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/sdk/communication/azure-communication-email/README.md b/sdk/communication/azure-communication-email/README.md index 818c83b9d2b6..09606e3b5ede 100644 --- a/sdk/communication/azure-communication-email/README.md +++ b/sdk/communication/azure-communication-email/README.md @@ -35,7 +35,7 @@ To learn more about the BOM, see the [AZURE SDK BOM README](https://github.com/A ``` -and then include the direct dependency in the dependencies section without the version tag. +And then include the direct dependency in the dependencies section without the version tag. ```xml @@ -55,17 +55,20 @@ add the direct dependency to your project as follows. "VERSION" below should be com.azure azure-communication-email - [VERSION] + VERSION ``` ## Key concepts -> More details coming soon. +The email SDK provides two clients, a synchronous client and an asynchronous client: + +`EmailClient` and `EmailAsyncClient` provide an operation to send an email message (plain text or html). Inline images are supported for HTML formatted email message, making emails appealing for marketing campaigns. +`EmailClient` and `EmailAsyncClient` also provide an operation to fetch the status of an email message sent. ## Examples -`EmailClient` provides the functionality to send email messages . +`EmailClient` provides the functionality to send email messages. ### Client Creation and Authentication From e23156ecbdc87d5161796334de018cf6d219394e Mon Sep 17 00:00:00 2001 From: Fanrui Sun Date: Mon, 11 Aug 2025 14:45:27 -0700 Subject: [PATCH 6/6] nit --- sdk/communication/azure-communication-email/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/communication/azure-communication-email/README.md b/sdk/communication/azure-communication-email/README.md index 09606e3b5ede..cdf611e9dc0d 100644 --- a/sdk/communication/azure-communication-email/README.md +++ b/sdk/communication/azure-communication-email/README.md @@ -64,6 +64,7 @@ add the direct dependency to your project as follows. "VERSION" below should be The email SDK provides two clients, a synchronous client and an asynchronous client: `EmailClient` and `EmailAsyncClient` provide an operation to send an email message (plain text or html). Inline images are supported for HTML formatted email message, making emails appealing for marketing campaigns. + `EmailClient` and `EmailAsyncClient` also provide an operation to fetch the status of an email message sent. ## Examples