Interface EmailContent.Builder

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

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