@NotNull MessageBuilder |
MessageBuilder.attachment(byte @NotNull [] content,
@NotNull String type,
@NotNull String filename) |
Attaches the given content to the message.
|
@NotNull MessageBuilder |
MessageBuilder.attachment(byte @NotNull [] content,
@NotNull String type,
@NotNull String filename,
@Nullable Collection<jakarta.mail.Header> headers) |
Attaches the given content with headers to the message.
|
@NotNull MessageBuilder |
MessageBuilder.bcc(@NotNull jakarta.mail.internet.InternetAddress bcc) |
Adds the given address to the list of blind carbon copy (bcc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.bcc(@NotNull jakarta.mail.internet.InternetAddress[] addresses) |
Adds the given addresses to the list of blind carbon copy (bcc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.bcc(@NotNull String address) |
Creates a new InternetAddress from given address and adds it to the list of blind carbon copy (bcc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.bcc(@NotNull String[] addresses) |
Creates new InternetAddress es from given addresses and adds them to the list of blind carbon copy (bcc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.bcc(@NotNull String address,
String name) |
Creates a new InternetAddress from given address and name and adds it to the list of blind carbon copy (bcc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.bcc(@NotNull Collection<String> addresses) |
Creates new InternetAddress es from given addresses and adds them to the list of blind carbon copy (bcc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.cc(@NotNull jakarta.mail.internet.InternetAddress cc) |
Adds the given address to the list of carbon copy (cc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.cc(@NotNull jakarta.mail.internet.InternetAddress[] addresses) |
Adds the given addresses to the list of carbon copy (cc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.cc(@NotNull String address) |
Creates a new InternetAddress from given address and adds it to the list of carbon copy (cc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.cc(@NotNull String[] addresses) |
Creates new InternetAddress es from given addresses and adds them to the list of carbon copy (cc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.cc(@NotNull String address,
@NotNull String name) |
Creates a new InternetAddress from given address and name and adds it to the list of carbon copy (cc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.cc(@NotNull Collection<String> addresses) |
Creates new InternetAddress es from given addresses and adds them to the list of carbon copy (cc ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.from(@NotNull jakarta.mail.internet.InternetAddress from) |
Sets the given address for the RFC 822 From header field.
|
@NotNull MessageBuilder |
MessageBuilder.from(@NotNull String address) |
Creates a new InternetAddress from given address and sets it for the RFC 822 From header field.
|
@NotNull MessageBuilder |
MessageBuilder.from(@NotNull String address,
@NotNull String name) |
Creates a new InternetAddress from given address and name and sets it for the RFC 822 From header field.
|
@NotNull MessageBuilder |
MailService.getMessageBuilder() |
Provides the message builder for this service.
|
@NotNull MessageBuilder |
MessageBuilder.header(@NotNull String name,
@Nullable String value) |
Creates a new header from given name and value and adds it to the list of headers.
|
@NotNull MessageBuilder |
MessageBuilder.headers(@NotNull Collection<jakarta.mail.Header> headers) |
Adds the given headers to the list of headers.
|
@NotNull MessageBuilder |
MessageBuilder.html(@NotNull String html) |
Sets the HTML content.
|
@NotNull MessageBuilder |
MessageBuilder.inline(byte @NotNull [] content,
@NotNull String type,
@NotNull String cid) |
Inlines the given content into the message.
|
@NotNull MessageBuilder |
MessageBuilder.inline(byte @NotNull [] content,
@NotNull String type,
@NotNull String cid,
@Nullable Collection<jakarta.mail.Header> headers) |
Inlines the given content with headers into the message.
|
@NotNull MessageBuilder |
MessageBuilder.replyTo(@NotNull jakarta.mail.internet.InternetAddress replyTo) |
Adds the given address to the list of addresses for the RFC 822 Reply-To header field.
|
@NotNull MessageBuilder |
MessageBuilder.replyTo(@NotNull jakarta.mail.internet.InternetAddress[] addresses) |
Adds the given addresses to the list of addresses for the RFC 822 Reply-To header field.
|
@NotNull MessageBuilder |
MessageBuilder.replyTo(@NotNull String address) |
Creates a new InternetAddress from given address and adds it to the list of addresses for the RFC 822 Reply-To header field.
|
@NotNull MessageBuilder |
MessageBuilder.replyTo(@NotNull String[] addresses) |
Creates new InternetAddress es from given addresses and adds them to the list of addresses for the RFC 822 Reply-To header field.
|
@NotNull MessageBuilder |
MessageBuilder.replyTo(@NotNull String address,
String name) |
Creates a new InternetAddress from given address and name and adds it to the list of addresses for the RFC 822 Reply-To header field.
|
@NotNull MessageBuilder |
MessageBuilder.replyTo(@NotNull Collection<String> addresses) |
Creates new InternetAddress es from given addresses and adds them to the list of addresses for the RFC 822 Reply-To header field.
|
@NotNull MessageBuilder |
MessageBuilder.subject(@NotNull String subject) |
Sets the given subject into the Subject header field.
|
@NotNull MessageBuilder |
MessageBuilder.text(@NotNull String text) |
Sets the plain text content.
|
@NotNull MessageBuilder |
MessageBuilder.to(@NotNull jakarta.mail.internet.InternetAddress to) |
Adds the given address to the list of primary (to ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.to(@NotNull jakarta.mail.internet.InternetAddress[] addresses) |
Adds the given addresses to the list of primary (to ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.to(@NotNull String address) |
Creates a new InternetAddress from given address and adds it to the list of primary (to ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.to(@NotNull String[] addresses) |
Creates new InternetAddress es from given addresses and adds them to the list of primary (to ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.to(@NotNull String address,
@NotNull String name) |
Creates a new InternetAddress from given address and name and adds it to the list of primary (to ) recipients.
|
@NotNull MessageBuilder |
MessageBuilder.to(@NotNull Collection<String> addresses) |
Creates new InternetAddress es from given addresses and adds them to the list of primary (to ) recipients.
|