Remove emails from black list

JohnIss

New Member
Is there any way to remove emails from the blacklist? I found table mw_email_blacklist... can i just delete records from there?
 
Yes, you can delete from that table, just keep in mind it won't have any effect against email addresses that have already been blacklisted, only on future emails that will be checked against the blacklist.
 
Do you mean email messages from these emails? Let me describe what i want:
I have the email: 123@black.com, i sent campaigns to it, suddenly it is blacklisted (and it didn't receive the last campaign), then i remove it from the blacklist and then i want to sent campaign to it again without problem.
I also found table mw_list_subscriber which is related to mw_email_blacklist. There is a column 'status' in this table and it has value 'blacklisted'... should i change it to something else?
 
@JohnIss - The functionality is already in the app, use the searchByStatus method:
Code:
$endpoint->searchByStatus($listUid, 'blacklisted', 1, 10);
We will also add a getBlacklistedSubscribers method for easier access ;)
 
Back
Top