Skip to main content

MailFromAttributesDto

MAIL FROM attributes for a domain / identity

Properties

NameTypeDescriptionNotes
identitystrThe identity or domain address[optional]
mail_from_domainstrThe new MAIL FROM domain of the identity. Must be a subdomain of the identity.[optional]
}

Example

from sailpoint.v2024.models.mail_from_attributes_dto import MailFromAttributesDto

mail_from_attributes_dto = MailFromAttributesDto(
identity='[email protected]',
mail_from_domain='example.sailpoint.com'
)

[Back to top]