mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
---
|
||||
id: beta-mail-from-attributes
|
||||
title: MailFromAttributes
|
||||
pagination_label: MailFromAttributes
|
||||
sidebar_label: MailFromAttributes
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'MailFromAttributes', 'BetaMailFromAttributes']
|
||||
slug: /tools/sdk/powershell/beta/models/mail-from-attributes
|
||||
tags: ['SDK', 'Software Development Kit', 'MailFromAttributes', 'BetaMailFromAttributes']
|
||||
---
|
||||
|
||||
|
||||
# MailFromAttributes
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Identity** | Pointer to **String** | The email identity | [optional]
|
||||
**MailFromDomain** | Pointer to **String** | The name of a domain that an email identity uses as a custom MAIL FROM domain | [optional]
|
||||
**MxRecord** | Pointer to **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** | Pointer to **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** | Pointer to **Enum** [ "PENDING", "SUCCESS", "FAILED" ] | The current status of the MAIL FROM verification | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$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
|
||||
```powershell
|
||||
$MailFromAttributes | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user