Skip to content

Commit 71afc51

Browse files
committed
Updated command and display name value
1 parent 6e33a76 commit 71afc51

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: v-deepikal
55
manager: komivi.agbakpem
66
services: azure-communication-services
77
ms.author: v-deepikal
8-
ms.date: 12/04/2023
8+
ms.date: 12/04/2024
99
ms.topic: include
1010
ms.service: azure-communication-services
1111
ms.custom: include files
@@ -31,7 +31,7 @@ Completing this quick start incurs a small cost of a few USD cents or less in yo
3131
Install the Azure Communication Services module for Azure PowerShell by using the `Install-Module -Name Az.Communication` command.
3232

3333
```azurepowershell-interactive
34-
Install-Module -Name Az.Communication -Force AllowClobber
34+
Install-Module -Name Az.Communication
3535
```
3636
After installing Communication module, run the `Get-Command -Module Az.Communication` command to get all the communication modules.
3737

@@ -47,7 +47,7 @@ Queues an email message to be sent to one or more recipients with only required
4747
$emailRecipientTo = @(
4848
@{
4949
Address = "<[email protected]>"
50-
DisplayName = "abc"
50+
DisplayName = "Email DisplayName"
5151
}
5252
)
5353
@@ -73,11 +73,11 @@ Queues an email message to be sent to one or more recipients with all the fields
7373
$emailRecipientTo = @(
7474
@{
7575
Address = "<[email protected]>"
76-
DisplayName = "abc"
76+
DisplayName = "Email DisplayName"
7777
},
7878
@{
7979
Address = "<[email protected]>"
80-
DisplayName = "def"
80+
DisplayName = "Email DisplayName"
8181
}
8282
)
8383
@@ -108,21 +108,21 @@ $headers = @{
108108
$emailRecipientBcc = @(
109109
@{
110110
Address = "<[email protected]>"
111-
DisplayName = "abc"
111+
DisplayName = "Email DisplayName"
112112
}
113113
)
114114
115115
$emailRecipientCc = @(
116116
@{
117117
Address = "<[email protected]>"
118-
DisplayName = "abc"
118+
DisplayName = "Email DisplayName"
119119
}
120120
)
121121
122122
$emailRecipientReplyTo = @(
123123
@{
124124
Address = "<[email protected]>"
125-
DisplayName = "abc"
125+
DisplayName = "Email DisplayName"
126126
}
127127
)
128128

0 commit comments

Comments
 (0)