When sending transactional emails through API, all of bounces are not marked as blacklisted in MW

fabyc

Active Member
I sent as 3000 transactional emails (in 8 hours) and many of them are bounced by Amazon SES, but I see any of them are not marked as blacklisted on MW.

If I send as regular campaigns through customer area, it works correctly: all of the Amazon SES bounces are registered in global blacklist of MW.

Does blacklisted function only work when sending as regular campaigns or there is something else it is needed to setting when sending transactional emails through API?

Thanks
 
Last edited:
That's correct, we don't track bounces for transactional emails, we don't have any area in the app to show them, etc.
 
Last edited:
a new area is showed into MW for cheking them
You will get in customer area a place to enter your api details and select when the checking will be applies, and there are several options, like when subscriber is added to list, when a transactional email is sent, etc:
PHP:
return array(
    self::CHECK_ZONE_CAMPAIGN, 
    self::CHECK_ZONE_LIST_IMPORT, 
    self::CHECK_ZONE_LIST_SUBSCRIBE,
    self::CHECK_ZONE_LIST_EXPORT,
    self::CHECK_ZONE_TRANSACTIONAL_EMAILS,
);
 
Back
Top