mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +00:00
1.6 KiB
1.6 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-mail-from-attributes | MailFromAttributes | MailFromAttributes | MailFromAttributes | powershellsdk |
|
/tools/sdk/powershell/beta/models/mail-from-attributes |
|
MailFromAttributes
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Identity | String | The email identity | [optional] |
| MailFromDomain | String | The name of a domain that an email identity uses as a custom MAIL FROM domain | [optional] |
| MxRecord | String | MX record that is required in customer's DNS to allow the domain to receive bounce and complaint notifications that email providers send you | [optional] |
| TxtRecord | String | TXT record that is required in customer's DNS in order to prove that Amazon SES is authorized to send email from your domain | [optional] |
| MailFromDomainStatus | Enum [ "PENDING", "SUCCESS", "FAILED" ] | The current status of the MAIL FROM verification | [optional] |
Examples
- Prepare the resource
$MailFromAttributes = Initialize-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