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.

Represents a unique message ID.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.SimpleEmail.Model.SendEmailResponse

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

Syntax

C#
public class SendEmailResponse : AmazonWebServiceResponse

The SendEmailResponse type exposes the following members

Constructors

NameDescription
Public Method SendEmailResponse()

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property MessageId System.String

Gets and sets the property MessageId.

The unique message identifier returned from the SendEmail action.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

The following example sends a formatted email:

SendEmail


var client = new AmazonSimpleEmailServiceClient();
var response = client.SendEmail(new SendEmailRequest 
{
    Destination = new Destination {
        BccAddresses = new List<string> {
                        
        },
        CcAddresses = new List<string> {
            "recipient3@example.com"
        },
        ToAddresses = new List<string> {
            "recipient1@example.com",
            "recipient2@example.com"
        }
    },
    Message = new Message {
        Body = new Body {
            Html = new Content {
                Charset = "UTF-8",
                Data = "This message body contains HTML formatting. It can, for example, contain links like this one: <a class=\"ulink\" href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide\" target=\"_blank\">Amazon SES Developer Guide</a>."
            },
            Text = new Content {
                Charset = "UTF-8",
                Data = "This is the message body in text format."
            }
        },
        Subject = new Content {
            Charset = "UTF-8",
            Data = "Test email"
        }
    },
    ReplyToAddresses = new List<string> {
                    
    },
    ReturnPath = "",
    ReturnPathArn = "",
    Source = "sender@example.com",
    SourceArn = ""
});

string messageId = response.MessageId;

            

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