Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
For information on using these queries in the Azure portal, see Log Analytics tutorial. For the REST API, see Query.
List recipients and failed delivery status.
ACSEmailStatusUpdateOperational
| where isnotempty(RecipientId)
| where DeliveryStatus != "Delivered"
| limit 100
List message ids and failed status.
ACSEmailStatusUpdateOperational
| where isempty(RecipientId)
| where DeliveryStatus != "OutForDelivery"
| limit 100
List recipients that have been dropped due to a hard bounce or suppressed due to customer managed opt-outs.
ACSEmailStatusUpdateOperational
| where DeliveryStatus == "Bounced" or DeliveryStatus == "Suppressed"
| where CorrelationId == "<email-send-request-message-id>"
| limit 100