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.
Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.dll
Version: (assembly version)
public class Body : Object
The Body type exposes the following members
Name | Description | |
---|---|---|
![]() |
Body() | Empty constructor used to set properties independently even when a simple constructor is available |
![]() |
Body(Content) | Instantiates Body with the parameterized properties |
Name | Type | Description | |
---|---|---|---|
![]() |
Html | Amazon.SimpleEmail.Model.Content |
Gets and sets the property Html.
The content of the message, in HTML format. Use this for email clients that can process HTML. You can include clickable links, formatted text, and much more in an HTML message. |
![]() |
Text | Amazon.SimpleEmail.Model.Content |
Gets and sets the property Text.
The content of the message, in text format. Use this for text-based email clients, or clients on high-latency networks (such as mobile devices). |
This example shows how to send an email.
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);
.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