email.unsuppress
Remove an address from the unsubscribe list; reports whether the platform list still blocks it.
email.unsuppress(email) → UnsuppressResult
Remove an address from your app’s unsubscribe list. Check platformSuppression on the result before promising delivery: a hard bounce elsewhere can keep the address blocked platform-wide even after you remove it from yours.
Parameters
email
string
RequiredThe address to remove.
Call from a method
const r = await email.unsuppress('user@example.com'); if (r.platformSuppression) { /* still blocked platform-wide */ }