diff --git a/sdk/communication/azure-communication-email/README.md b/sdk/communication/azure-communication-email/README.md index e185feb7723e..cdf611e9dc0d 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 @@ -49,27 +49,27 @@ 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 - 1.2.0-beta.1 + VERSION ``` -[//]: # ({x-version-update-end}) - ## 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