Skip to content

Get Email Address Insights

sesv2_get_email_address_insights R Documentation

Provides validation insights about a specific email address, including syntax validation, DNS record checks, mailbox existence, and other deliverability factors

Description

Provides validation insights about a specific email address, including syntax validation, DNS record checks, mailbox existence, and other deliverability factors.

Usage

sesv2_get_email_address_insights(EmailAddress)

Arguments

EmailAddress

[required] The email address to analyze for validation insights.

Value

A list with the following syntax:

list(
  MailboxValidation = list(
    IsValid = list(
      ConfidenceVerdict = "LOW"|"MEDIUM"|"HIGH"
    ),
    Evaluations = list(
      HasValidSyntax = list(
        ConfidenceVerdict = "LOW"|"MEDIUM"|"HIGH"
      ),
      HasValidDnsRecords = list(
        ConfidenceVerdict = "LOW"|"MEDIUM"|"HIGH"
      ),
      MailboxExists = list(
        ConfidenceVerdict = "LOW"|"MEDIUM"|"HIGH"
      ),
      IsRoleAddress = list(
        ConfidenceVerdict = "LOW"|"MEDIUM"|"HIGH"
      ),
      IsDisposable = list(
        ConfidenceVerdict = "LOW"|"MEDIUM"|"HIGH"
      ),
      IsRandomInput = list(
        ConfidenceVerdict = "LOW"|"MEDIUM"|"HIGH"
      )
    )
  )
)

Request syntax

svc$get_email_address_insights(
  EmailAddress = "string"
)