View Source ExUserCheck.Domains (ex_user_check v0.1.0)
Check if a domain is used for disposable email addresses
Summary
Functions
Returns information about whether a domain is used for disposable email addresses, including MX record presence, public email service status, and more.
Functions
Returns information about whether a domain is used for disposable email addresses, including MX record presence, public email service status, and more.
Parameters
domain
(string): The domain name to query.
Returns
{:ok, response_body}
if the request is successful.{:error, reason}
if the request fails.
Examples
iex> ExUserCheck.Domains.retrieve("example.com")
{:ok, %{"status" => "active", "details" => %{...}}}