AWS SDK Version 2 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.

.NET Framework 3.5
 
Represents the message to be sent, composed of a subject and a body.

Inheritance Hierarchy

System.Object
  Amazon.SimpleEmail.Model.Message

Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.dll
Version: (assembly version)

Syntax

C#
public class Message : Object

The Message type exposes the following members

Constructors

NameDescription
Public Method Message() Empty constructor used to set properties independently even when a simple constructor is available
Public Method Message(Content, Body) Instantiates Message with the parameterized properties

Properties

NameTypeDescription
Public Property Body Amazon.SimpleEmail.Model.Body Gets and sets the property Body.

The message body.

Public Property Subject Amazon.SimpleEmail.Model.Content Gets and sets the property Subject.

The subject of the message: A short summary of the content, which will appear in the recipient's inbox.

Examples

This example shows how to send an email.

Send email example

var sesClient = new AmazonSimpleEmailServiceClient();           
      
var dest = new Destination
{
  ToAddresses = new List<string>() { "janedoe@example.com" },
  CcAddresses = new List<string>() { "richarddoe@example.com" }
};

var from = "johndoe@example.com";
var subject = new Content("You're invited to the meeting");
var body = new Body(new Content("Please join us Monday at 7:00 PM."));
var msg = new Message(subject, body);

var request = new SendEmailRequest
{
  Destination = dest,
  Message = msg, 
  Source = from
};

sesClient.SendEmail(request);
      

Version Information

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

.NET for Windows Store apps:
Supported in: Windows 8.1, Windows 8

.NET for Windows Phone:
Supported in: Windows Phone 8.1, Windows Phone 8