Skip to main content

MailFromAttributes

Properties

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

Examples

  • Prepare the resource
$MailFromAttributes = Initialize-PSSailpoint.BetaMailFromAttributes  -Identity bob.smith@sailpoint.com `
-MailFromDomain foo.sailpoint.com `
-MxRecord 10 feedback-smtp.us-east-1.amazonses.com `
-TxtRecord v=spf1 include:amazonses.com ~all `
-MailFromDomainStatus PENDING
  • Convert the resource to JSON
$MailFromAttributes | ConvertTo-JSON

[Back to top]