@@ -5,7 +5,7 @@ author: v-deepikal
5
5
manager : komivi.agbakpem
6
6
services : azure-communication-services
7
7
ms.author : v-deepikal
8
- ms.date : 12/04/2023
8
+ ms.date : 12/04/2024
9
9
ms.topic : include
10
10
ms.service : azure-communication-services
11
11
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
31
31
Install the Azure Communication Services module for Azure PowerShell by using the ` Install-Module -Name Az.Communication ` command.
32
32
33
33
``` azurepowershell-interactive
34
- Install-Module -Name Az.Communication -Force AllowClobber
34
+ Install-Module -Name Az.Communication
35
35
```
36
36
After installing Communication module, run the ` Get-Command -Module Az.Communication ` command to get all the communication modules.
37
37
@@ -47,7 +47,7 @@ Queues an email message to be sent to one or more recipients with only required
47
47
$emailRecipientTo = @(
48
48
@{
49
49
50
- DisplayName = "abc "
50
+ DisplayName = "Email DisplayName "
51
51
}
52
52
)
53
53
@@ -73,11 +73,11 @@ Queues an email message to be sent to one or more recipients with all the fields
73
73
$emailRecipientTo = @(
74
74
@{
75
75
76
- DisplayName = "abc "
76
+ DisplayName = "Email DisplayName "
77
77
},
78
78
@{
79
79
80
- DisplayName = "def "
80
+ DisplayName = "Email DisplayName "
81
81
}
82
82
)
83
83
@@ -108,21 +108,21 @@ $headers = @{
108
108
$emailRecipientBcc = @(
109
109
@{
110
110
111
- DisplayName = "abc "
111
+ DisplayName = "Email DisplayName "
112
112
}
113
113
)
114
114
115
115
$emailRecipientCc = @(
116
116
@{
117
117
118
- DisplayName = "abc "
118
+ DisplayName = "Email DisplayName "
119
119
}
120
120
)
121
121
122
122
$emailRecipientReplyTo = @(
123
123
@{
124
124
125
- DisplayName = "abc "
125
+ DisplayName = "Email DisplayName "
126
126
}
127
127
)
128
128
0 commit comments