File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed
reference/6/Microsoft.PowerShell.Utility Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Sends an email message.
18
18
```
19
19
Send-MailMessage [-To] <string[]> [-Subject] <string> [[-Body] <string>] [[-SmtpServer] <string>]
20
20
-From <string> [-Attachments <string[]>] [-Bcc <string[]>] [-BodyAsHtml] [-Encoding <Encoding>]
21
- [-Cc <string[]>] [-DeliveryNotificationOption <DeliveryNotificationOptions>]
21
+ [-Cc <string[]>] [-ReplyTo <string[]>] [- DeliveryNotificationOption <DeliveryNotificationOptions>]
22
22
[-Priority <MailPriority>] [-Credential <pscredential>] [-UseSsl] [-Port <int>] [<CommonParameters>]
23
23
```
24
24
@@ -170,6 +170,23 @@ Accept pipeline input: False
170
170
Accept wildcard characters: False
171
171
` ` `
172
172
173
+ # ## -ReplyTo
174
+
175
+ Specifies additional email addresses (other than the From address) to use to reply to this message.
176
+ Enter names (optional) and the email address, such as `Name <[email protected] >`.
177
+
178
+ ` ` ` yaml
179
+ Type: String[]
180
+ Parameter Sets: (All)
181
+ Aliases:
182
+
183
+ Required: False
184
+ Position: Named
185
+ Default value: None
186
+ Accept pipeline input: False
187
+ Accept wildcard characters: False
188
+ ` ` `
189
+
173
190
# ## -Credential
174
191
175
192
Specifies a user account that has permission to perform this action. The default is the current
You can’t perform that action at this time.
0 commit comments