Community Advisor
July 15, 2025
I noticed a similar behavior when sending to my work email vs personal email. The reason can be your email server is doing an additional verification and delivering the email late. Also some domain such as comcast can show delay because of the throughput or throttle traffic from the AJO IP
You can run this query
SELECT
split_part(
_experience.customerJourneyManagement.emailChannelContext.address,
'@',
2
) AS recipientDomain,
_experience.customerjourneymanagement.messagedeliveryfeedback.feedbackstatus AS status, _experience.customerjourneymanagement.messagedeliveryfeedback.messagefailure.reason AS failurereason, _experience.customerjourneymanagement.messagedeliveryfeedback.messagefailure.type AS bouncetype,
count(*) eventCount
FROM
ajo_message_feedback_event_dataset
WHERE
_experience.customerjourneymanagement.messageprofile.channel._id = 'https://ns.adobe.com/xdm/channels/email'
and _experience.customerJourneyManagement.messageDeliveryfeedback.feedbackStatus = 'delay'
GROUP BY
recipientDomain, status, failurereason, bouncetype
ORDER BY
eventCount DESC;
Overall, based on the result of your query you may need to reach out to Adobe deliverability to get more details on the issue or to do a remediation with the domain.
Thanks,
David
David Kangni

