mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
---
|
||||
id: beta-mail-from-attributes
|
||||
title: MailFromAttributes
|
||||
pagination_label: MailFromAttributes
|
||||
sidebar_label: MailFromAttributes
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'MailFromAttributes', 'BetaMailFromAttributes']
|
||||
slug: /tools/sdk/python/beta/models/mail-from-attributes
|
||||
tags: ['SDK', 'Software Development Kit', 'MailFromAttributes', 'BetaMailFromAttributes']
|
||||
---
|
||||
|
||||
# MailFromAttributes
|
||||
|
||||
MAIL FROM attributes for a domain / identity
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**identity** | **str** | The email identity | [optional]
|
||||
**mail_from_domain** | **str** | The name of a domain that an email identity uses as a custom MAIL FROM domain | [optional]
|
||||
**mx_record** | **str** | 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]
|
||||
**txt_record** | **str** | 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]
|
||||
**mail_from_domain_status** | **Enum** [ 'PENDING', 'SUCCESS', 'FAILED' ] | The current status of the MAIL FROM verification | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.mail_from_attributes import MailFromAttributes
|
||||
|
||||
mail_from_attributes = MailFromAttributes(
|
||||
identity='bob.smith@sailpoint.com',
|
||||
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]](#)
|
||||
|
||||
Reference in New Issue
Block a user