Share via


Consultas para la tabla ACSEmailStatusUpdateOperational

Email entregas con error por identificador de destinatario

Enumera los destinatarios y el estado de entrega con errores.

ACSEmailStatusUpdateOperational
| where isnotempty(RecipientId)
| where DeliveryStatus != "Delivered"
| limit 100

Email entregas con error por identificador de mensaje

Muestra los identificadores de mensaje y el estado con errores.

ACSEmailStatusUpdateOperational
| where isempty(RecipientId) 
| where DeliveryStatus != "OutForDelivery"
| limit 100