Java com.amazonaws.services.simpleemail.model SendEmailRequest fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.simpleemail.model SendEmailRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.simpleemail.model SendEmailRequest.

The text is from its open source code.

Constructor

SendEmailRequest()
Default constructor for SendEmailRequest object.
SendEmailRequest(String source, Destination destination, Message message)
Constructs a new SendEmailRequest object.

Method

DestinationgetDestination()

The destination for this email, composed of To:, CC:, and BCC: fields.

MessagegetMessage()

The message to be sent.

StringgetSource()

The email address that is sending the email.

voidsetDestination(Destination destination)

The destination for this email, composed of To:, CC:, and BCC: fields.

voidsetMessage(Message message)

The message to be sent.

voidsetReplyToAddresses(java.util.Collection replyToAddresses)

The reply-to email address(es) for the message.

voidsetReturnPath(String returnPath)

The email address that bounces and complaints will be forwarded to when feedback forwarding is enabled.

voidsetSource(String source)

The email address that is sending the email.

SendEmailRequestwithDestination(Destination destination)

The destination for this email, composed of To:, CC:, and BCC: fields.

SendEmailRequestwithMessage(Message message)

The message to be sent.

SendEmailRequestwithReplyToAddresses(String... replyToAddresses)

The reply-to email address(es) for the message.

SendEmailRequestwithReplyToAddresses(java.util.Collection replyToAddresses)

The reply-to email address(es) for the message.

SendEmailRequestwithSource(String source)

The email address that is sending the email.