Compartir a través de


Consultas para la tabla ACSEmailStatusUpdateOperational

Entregas con error de correo electrónico por identificador de destinatario

Enumera los destinatarios y el estado de entrega con errores.

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

Entregas con error de correo electrónico por identificador de mensaje

Enumera los identificadores de mensaje y el estado con errores.

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

Destinatarios rebotados y suprimidos por correo electrónico

Enumerar los destinatarios que se han eliminado debido a un rebote duro o suprimido debido a las opt-outs administradas por el cliente.

ACSEmailStatusUpdateOperational
| where DeliveryStatus == "Bounced" or DeliveryStatus == "Suppressed"
| where CorrelationId == "<email-send-request-message-id>"
| limit 100