Hi guys, do you know an enrichment that can tell which emails have which mailbox or email provider? For example, if I have to segregate them into Outlook and G suite users.
Hey, thanks for reaching out Reyhan - That would indeed typically be with an HTTP API call. Google has a Gmail Postmaster Tools service that provides some information about email domains. Typically that would require to first extract the domain with our enrichment here
Then add a HTTP API column and call :
Method: GET
Endpoint:https://dns.google/resolve?name=domain.com&type=MX
Replace the domain.com with forward slash and link the column that contains the domains and run
In the response, if you see mx.google.com, you know itβs a G Suite user. If you see something like mail.protection.outlook.com, itβs an Outlook user.