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 Details

    • 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 the Message.Builder avoiding the need to create one manually via Message.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to simple(Message).

      Parameters:
      simple - a consumer that will call methods on Message.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • 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 Amazon Pinpoint supports.

      • The entire message must be Base64 encoded.

      • 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 Amazon Pinpoint supports.

      • The entire message must be Base64 encoded.

      • 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

      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 Amazon Pinpoint supports.

      • The entire message must be Base64 encoded.

      • 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.

      This is a convenience method that creates an instance of the RawMessage.Builder avoiding the need to create one manually via RawMessage.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to raw(RawMessage).

      Parameters:
      raw - a consumer that will call methods on RawMessage.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • 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 the Template.Builder avoiding the need to create one manually via Template.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to template(Template).

      Parameters:
      template - a consumer that will call methods on Template.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: