Skip to content

Commit 6de5537

Browse files
Merge pull request #218898 from natekimball-msft/natekimball/add-access-message-id-to-troubleshooting
Adding section on how to access email message ID
2 parents 564f294 + 0c7ffef commit 6de5537

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

articles/communication-services/concepts/troubleshooting-info.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ To help you troubleshoot certain types of issues, you may be asked for any of th
2525
* **Call ID**: This ID is used to identify Communication Services calls.
2626
* **SMS message ID**: This ID is used to identify SMS messages.
2727
* **Short Code Program Brief ID**: This ID is used to identify a short code program brief application.
28+
* **Email message ID**: This ID is used to identify Send Email requests.
2829
* **Correlation ID**: This ID is used to identify requests made using Call Automation.
2930
* **Call logs**: These logs contain detailed information that can be used to troubleshoot calling and network issues.
3031

@@ -136,6 +137,16 @@ console.log(result); // your message ID will be in the result
136137
The program brief ID can be found on the [Azure portal](https://portal.azure.com) in the Short Codes blade.
137138

138139
:::image type="content" source="./media/short-code-trouble-shooting.png" alt-text="Screenshot showing a short code program brief ID.":::
140+
141+
---
142+
143+
## Access your email message ID
144+
When troubleshooting send email or email message status requests, you may be asked to provide a `message ID`. This can be accessed in the response:
145+
146+
# [.NET](#tab/dotnet)
147+
```csharp
148+
Console.WriteLine($"MessageId = {emailResult.MessageId}");
149+
```
139150
---
140151

141152
## Enable and access call logs

0 commit comments

Comments
 (0)