EmailSuppression
TypeOne entry on the unsubscribe list, with how the address got there.
One entry on your app’s unsubscribe list. source says how it got there: the one-click header, the body link, an owner add, or a spam complaint.
EmailSuppression.ts
interface EmailSuppression { id: string email: string source: 'one_click' | 'link' | 'owner' | 'complaint' createdAt: string }
Fields
id
string
The suppression id.
email
string
The suppressed address.
source
'one_click' | 'link' | 'owner' | 'complaint'
How the address ended up suppressed.
createdAt
string
When it was added.