Interface EmailContent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EmailContent.Builder,EmailContent>,SdkBuilder<EmailContent.Builder,EmailContent>,SdkPojo
- Enclosing class:
- EmailContent
public static interface EmailContent.Builder extends SdkPojo, CopyableBuilder<EmailContent.Builder,EmailContent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default EmailContent.Builderraw(Consumer<RawMessage.Builder> raw)The raw email message.EmailContent.Builderraw(RawMessage raw)The raw email message.default EmailContent.Buildersimple(Consumer<Message.Builder> simple)The simple email message.EmailContent.Buildersimple(Message simple)The simple email message.default EmailContent.Buildertemplate(Consumer<Template.Builder> template)The template to use for the email message.EmailContent.Buildertemplate(Template template)The template to use for the email message.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
simple
EmailContent.Builder simple(Message simple)
The simple email message. The message consists of a subject and a message body.
- Parameters:
simple- The simple email message. The message consists of a subject and a message body.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
simple
default EmailContent.Builder simple(Consumer<Message.Builder> simple)
The simple email message. The message consists of a subject and a message body.
This is a convenience method that creates an instance of theMessage.Builderavoiding the need to create one manually viaMessage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosimple(Message).- Parameters:
simple- a consumer that will call methods onMessage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
simple(Message)
-
raw
EmailContent.Builder raw(RawMessage raw)
The raw email message. The message has to meet the following criteria:
-
The message has to contain a header and a body, separated by one blank line.
-
All of the required header fields must be present in the message.
-
Each part of a multipart MIME message must be formatted properly.
-
If you include attachments, they must be in a file format that the Amazon SES API v2 supports.
-
The raw data of the message needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base 64-encoding for you.
-
If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you should encode that content to ensure that recipients' email clients render the message properly.
-
The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in RFC 5321.
- Parameters:
raw- The raw email message. The message has to meet the following criteria:-
The message has to contain a header and a body, separated by one blank line.
-
All of the required header fields must be present in the message.
-
Each part of a multipart MIME message must be formatted properly.
-
If you include attachments, they must be in a file format that the Amazon SES API v2 supports.
-
The raw data of the message needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base 64-encoding for you.
-
If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you should encode that content to ensure that recipients' email clients render the message properly.
-
The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in RFC 5321.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
raw
default EmailContent.Builder raw(Consumer<RawMessage.Builder> raw)
The raw email message. The message has to meet the following criteria:
-
The message has to contain a header and a body, separated by one blank line.
-
All of the required header fields must be present in the message.
-
Each part of a multipart MIME message must be formatted properly.
-
If you include attachments, they must be in a file format that the Amazon SES API v2 supports.
-
The raw data of the message needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base 64-encoding for you.
-
If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you should encode that content to ensure that recipients' email clients render the message properly.
-
The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in RFC 5321.
RawMessage.Builderavoiding the need to create one manually viaRawMessage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toraw(RawMessage).- Parameters:
raw- a consumer that will call methods onRawMessage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
raw(RawMessage)
-
-
template
EmailContent.Builder template(Template template)
The template to use for the email message.
- Parameters:
template- The template to use for the email message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
template
default EmailContent.Builder template(Consumer<Template.Builder> template)
The template to use for the email message.
This is a convenience method that creates an instance of theTemplate.Builderavoiding the need to create one manually viaTemplate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totemplate(Template).- Parameters:
template- a consumer that will call methods onTemplate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
template(Template)
-
-