You can confirm if a trigger was suppressed for a CC'd user by checking the ticket's audit log via the Zendesk API. This suppression occurs to avoid sending duplicate notifications to users who are already recipients of the email that updated the ticket.
To check, access the audit log athttps://{your subdomain}.zendesk.com/api/v2/tickets/{ticket number}/audits.json
. Look for thenotifications_suppressed_for
field, which will list the user IDs for whom notifications were suppressed. This helps ensure that users do not receive multiple emails for the same ticket update.
Triggers may not fire for CC'd users if they are recipients of the email that updated the ticket. This is to prevent them from receiving multiple notifications for the same update. If a user is CC'd or in the 'To' field of the original email, any…
Suppressing trigger notifications for CC'd users prevents them from receiving multiple emails for the same ticket update. This is particularly useful when the user is already a recipient of the email that updated the ticket. By suppressing these…