I would like to know how create a data extension to works like a black list and include every email with hard bounce or blocked automatically every time that I send an email.
could you help me?
Thanks!
2 answers
Hi Javier,
MC has already a standard function for that: Check out https://help.salesforce.com/articleView?id=mc_es_bounce_mail_management.htm&type=5
If you do however want the details in a DE you have to do the following:
1) Create a DE with the columns specified in this data view https://help.salesforce.com/articleView?id=mc_as_data_view_bounce.htm&type=5
2) Create an automation in automation studio with a sql query3)
SELECT *
FROM
_bounce
4) Target DE: *DE from 1)*
5) Schedule the Query
-> you get the DE with all bounce information
Khoi