AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the GetIdentityMailFromDomainAttributes operation. Returns the custom MAIL FROM attributes for a list of identities (email addresses : domains).

This operation is throttled at one request per second and can only get custom MAIL FROM attributes for up to 100 identities at a time.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.SimpleEmail.AmazonSimpleEmailServiceRequest
      Amazon.SimpleEmail.Model.GetIdentityMailFromDomainAttributesRequest

Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.SimpleEmail.dll
Version: 3.x.y.z

Syntax

C#
public class GetIdentityMailFromDomainAttributesRequest : AmazonSimpleEmailServiceRequest
         IAmazonWebServiceRequest

The GetIdentityMailFromDomainAttributesRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property Identities System.Collections.Generic.List<System.String>

Gets and sets the property Identities.

A list of one or more identities.

Examples

The following example returns the custom MAIL FROM attributes for an identity:

GetIdentityMailFromDomainAttributes


var client = new AmazonSimpleEmailServiceClient();
var response = client.GetIdentityMailFromDomainAttributes(new GetIdentityMailFromDomainAttributesRequest 
{
    Identities = new List<string> {
        "example.com"
    }
});

Dictionary<string, IdentityMailFromDomainAttributes> mailFromDomainAttributes = response.MailFromDomainAttributes;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5