Skip to content

Commit 3ec5eef

Browse files
authored
Merge pull request #102761 from apattath/patch-1
Update some typos in email send quickstart sample snippets
2 parents 6b27df0 + cdf2aa5 commit 3ec5eef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ var bccRecipients = new List<EmailAddress>
212212
new EmailAddress("<[email protected]>"),
213213
};
214214

215-
EmailRecipient emailRecipients = new EmailRecipients(toRecipients, ccRecipients, bccRecipients);
215+
EmailRecipients emailRecipients = new EmailRecipients(toRecipients, ccRecipients, bccRecipients);
216216
```
217217

218218
You can download the sample app demonstrating this from [GitHub](https://github.com/Azure-Samples/communication-services-dotnet-quickstarts/tree/main/SendEmailAdvanced/SendEmailToMultipleRecipients)
@@ -228,7 +228,7 @@ string attachmentFileInBytes = Convert.ToBase64String(bytes);
228228

229229
var emailAttachment = new EmailAttachment(
230230
"<your-attachment-name>",
231-
"<your-attachment-name>",
231+
<EmailAttachmentType>,
232232
attachmentFileInBytes
233233
);
234234

0 commit comments

Comments
 (0)