Interface Envelope.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Envelope.Builder,Envelope>,SdkBuilder<Envelope.Builder,Envelope>,SdkPojo
- Enclosing class:
- Envelope
public static interface Envelope.Builder extends SdkPojo, CopyableBuilder<Envelope.Builder,Envelope>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Envelope.Builderfrom(String from)The RCPT FROM given by the host from which the email was received.Envelope.Builderhelo(String helo)The HELO used by the host from which the email was received.Envelope.Builderto(String... to)All SMTP TO entries given by the host from which the email was received.Envelope.Builderto(Collection<String> to)All SMTP TO entries given by the host from which the email was received.-
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
-
from
Envelope.Builder from(String from)
The RCPT FROM given by the host from which the email was received.
- Parameters:
from- The RCPT FROM given by the host from which the email was received.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
helo
Envelope.Builder helo(String helo)
The HELO used by the host from which the email was received.
- Parameters:
helo- The HELO used by the host from which the email was received.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
to
Envelope.Builder to(Collection<String> to)
All SMTP TO entries given by the host from which the email was received.
- Parameters:
to- All SMTP TO entries given by the host from which the email was received.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
to
Envelope.Builder to(String... to)
All SMTP TO entries given by the host from which the email was received.
- Parameters:
to- All SMTP TO entries given by the host from which the email was received.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-