Skip to main content

MailFromAttributes

MAIL FROM attributes for a domain / identity

Properties

NameTypeDescriptionNotes
identitystrThe email identity[optional]
mail_from_domainstrThe name of a domain that an email identity uses as a custom MAIL FROM domain[optional]
mx_recordstrMX record that is required in customer's DNS to allow the domain to receive bounce and complaint notifications that email providers send you[optional]
txt_recordstrTXT record that is required in customer's DNS in order to prove that Amazon SES is authorized to send email from your domain[optional]
mail_from_domain_statusEnum [ 'PENDING', 'SUCCESS', 'FAILED' ]The current status of the MAIL FROM verification[optional]
}

Example

from sailpoint.v2024.models.mail_from_attributes import MailFromAttributes

mail_from_attributes = MailFromAttributes(
identity='[email protected]',
mail_from_domain='foo.sailpoint.com',
mx_record='10 feedback-smtp.us-east-1.amazonses.com',
txt_record='v=spf1 include:amazonses.com ~all',
mail_from_domain_status='PENDING'
)

[Back to top]