| Package | Description |
|---|---|
| org.simplejavamail.api.email |
| Modifier and Type | Method and Description |
|---|---|
@Nullable Recipient |
EmailPopulatingBuilder.getBounceToRecipient() |
@Nullable Recipient |
Email.getBounceToRecipient() |
@Nullable Recipient |
EmailPopulatingBuilder.getDispositionNotificationTo() |
@Nullable Recipient |
Email.getDispositionNotificationTo() |
@Nullable Recipient |
EmailPopulatingBuilder.getFromRecipient() |
@Nullable Recipient |
Email.getFromRecipient() |
@Nullable Recipient |
EmailPopulatingBuilder.getReturnReceiptTo() |
@Nullable Recipient |
Email.getReturnReceiptTo() |
| Modifier and Type | Method and Description |
|---|---|
EmailPopulatingBuilder |
EmailPopulatingBuilder.bcc(Recipient... recipients)
Delegates to
EmailPopulatingBuilder.withRecipients(Collection, Message.RecipientType) with fixedRecipientType=Message.RecipientType#BCC. |
EmailPopulatingBuilder |
EmailPopulatingBuilder.cc(Recipient... recipients)
Delegates to
EmailPopulatingBuilder.withRecipients(Collection, Message.RecipientType) with recipientType=Message.RecipientType#CC. |
EmailPopulatingBuilder |
EmailPopulatingBuilder.from(@NotNull Recipient recipient)
Sets the address of the sender of this email with given
Recipient (ignoring its Message.RecipientType if provided). |
EmailPopulatingBuilder |
EmailPopulatingBuilder.to(Recipient... recipients)
Delegates to
EmailPopulatingBuilder.withRecipients(Collection, Message.RecipientType) with recipientType=Message.RecipientType#TO. |
EmailPopulatingBuilder |
EmailPopulatingBuilder.withBounceTo(@Nullable Recipient recipient)
Sets the bounceTo address of this email with given
Recipient (ignoring its Message.RecipientType if provided). |
EmailPopulatingBuilder |
EmailPopulatingBuilder.withDispositionNotificationTo(@NotNull Recipient recipient)
Indicates this email should use the NPM flag "Disposition-Notification-To" with the given
preconfigred
Recipient. |
EmailPopulatingBuilder |
EmailPopulatingBuilder.withOverrideReceivers(Recipient... recipients)
Delegates to
EmailPopulatingBuilder.withOverrideReceivers(List) |
EmailPopulatingBuilder |
EmailPopulatingBuilder.withRecipient(@NotNull Recipient recipient)
Adds a new
Recipient instance as copy of the provided recipient (copying name, address and Message.RecipientType). |
EmailPopulatingBuilder |
EmailPopulatingBuilder.withRecipients(Recipient... recipients)
Delegates to
EmailPopulatingBuilder.withRecipients(Collection, Message.RecipientType) with Message.RecipientType left empty (so it will use the original values). |
EmailPopulatingBuilder |
EmailPopulatingBuilder.withReplyTo(@NotNull Recipient recipient)
Delegates to #withReplyTo(Recipient...)
|
EmailPopulatingBuilder |
EmailPopulatingBuilder.withReturnReceiptTo(@NotNull Recipient recipient)
Indicates that this email should use the RRT flag "Return-Receipt-To" with the
preconfigured
Recipient. |
Copyright © 2009–2024. All rights reserved.