Skip to content

Commit a4347a4

Browse files
committed
Updates
Addressing GitHub Issue 113231
1 parent 429fdc5 commit a4347a4

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

articles/communication-services/quickstarts/email/includes/send-email-az-cli.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,13 @@ You need to [sign in to Azure CLI](/cli/azure/authenticate-azure-cli). You can s
4242

4343
You can configure the `AZURE_COMMUNICATION_CONNECTION_STRING` environment variable to use Azure CLI keys operations without having to use `--connection_string` to pass in the connection string. To configure an environment variable, open a console window and select your operating system from the below tabs. Replace `<connectionString>` with your actual connection string.
4444

45+
>[!NOTE]
46+
> Don't store your connection string as an unencrypted environment variable for production environments. This is meant for testing purposes only. For production environments, you should generate new connection strings. We encourage you to encrypt connection strings and change them regularly.
47+
4548
##### [Windows](#tab/windows)
4649

4750
```console
48-
setx AZURE_COMMUNICATION_STRING "<yourConnectionString>"
51+
setx AZURE_COMMUNICATION_CONNECTION_STRING "<yourConnectionString>"
4952
```
5053

5154
After you add the environment variable, you may need to restart any running programs that will need to read the environment variable, including the console window. For example, if you're using Visual Studio as your editor, restart Visual Studio before running the example.
@@ -55,7 +58,7 @@ After you add the environment variable, you may need to restart any running prog
5558
Edit your **`.zshrc`**, and add the environment variable:
5659

5760
```bash
58-
export AZURE_COMMUNICATION_STRING="<connectionString>"
61+
export AZURE_COMMUNICATION_CONNECTION_STRING="<connectionString>"
5962
```
6063

6164
After you add the environment variable, run `source ~/.zshrc` from your console window to make the changes effective. If you created the environment variable with your IDE open, you may need to close and reopen the editor, IDE, or shell in order to access the variable.
@@ -65,7 +68,7 @@ After you add the environment variable, run `source ~/.zshrc` from your console
6568
Edit your **`.bash_profile`**, and add the environment variable:
6669

6770
```bash
68-
export AZURE_COMMUNICATION_STRING="<connectionString>"
71+
export AZURE_COMMUNICATION_CONNECTION_STRING="<connectionString>"
6972
```
7073

7174
After you add the environment variable, run `source ~/.bash_profile` from your console window to make the changes effective. If you created the environment variable with your IDE open, you may need to close and reopen the editor, IDE, or shell in order to access the variable.

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Quickstart - How to send an email using Azure Communication Service
2+
title: Quickstart - How to send an email using Azure Communication Services
33
titleSuffix: An Azure Communication Services Quickstart
44
description: Learn how to send an email message using Azure Communication Services.
55
author: bashan-git
@@ -13,11 +13,11 @@ ms.custom: devx-track-extended-java, devx-track-js, devx-track-python
1313
zone_pivot_groups: acs-azcli-js-csharp-java-python-portal-nocode
1414
---
1515

16-
# Quickstart: How to send an email using Azure Communication Service
16+
# Quickstart: How to send an email using Azure Communication Services
1717

1818
[!INCLUDE [Survey Request](../../includes/survey-request.md)]
1919

20-
In this quick start, you'll learn about how to send email using our Email SDKs.
20+
This quickstart describes how to send email using our Email SDKs.
2121

2222
::: zone pivot="platform-azportal"
2323
[!INCLUDE [Send email using Try Email in Azure Portal ](./includes/try-send-email.md)]
@@ -74,4 +74,4 @@ In this quickstart, you learned how to send emails using Azure Communication Ser
7474
- Learn about [Email concepts](../../concepts/email/email-overview.md).
7575
- Familiarize yourself with [email client library](../../concepts/email/sdk-features.md).
7676
- Learn more about [how to send a chat message](../chat/logic-app.md) from Power Automate using Azure Communication Services.
77-
- Learn more about access tokens check in [Create and Manage Azure Communication Services users and access tokens](../chat/logic-app.md).
77+
- Learn more about access tokens check-in [Create and Manage Azure Communication Services users and access tokens](../chat/logic-app.md).

0 commit comments

Comments
 (0)