Uses of Class
io.quarkus.mailer.Mail
-
Packages that use Mail Package Description io.quarkus.mailer io.quarkus.mailer.reactive io.quarkus.mailer.runtime -
-
Uses of Mail in io.quarkus.mailer
Methods in io.quarkus.mailer that return Mail Modifier and Type Method Description MailMail. addAttachment(String name, byte[] data, String contentType)Adds an attachment.MailMail. addAttachment(String name, byte[] data, String contentType, String description, String disposition)Adds an attachment.MailMail. addAttachment(String name, File file, String contentType)Adds an attachment.MailMail. addAttachment(String name, org.reactivestreams.Publisher<Byte> data, String contentType)Adds an attachment.MailMail. addAttachment(String name, org.reactivestreams.Publisher<Byte> data, String contentType, String description, String disposition)Adds an attachment.MailMail. addBcc(String... bcc)Adds BCC recipients.MailMail. addCc(String... cc)Adds CC recipients.MailMail. addHeader(String key, String... values)Adds a header value.MailMail. addInlineAttachment(String name, byte[] data, String contentType, String contentId)Adds an inline attachment.MailMail. addInlineAttachment(String name, File file, String contentType, String contentId)Adds an inline attachment.MailMail. addInlineAttachment(String name, org.reactivestreams.Publisher<Byte> data, String contentType, String contentId)Adds an inline attachment.MailMail. addReplyTo(String replyTo)Adds a reply-to address.MailMail. addTo(String... to)Adds TO recipients.MailMail. removeHeader(String key)Removes a header.MailMail. setAttachments(List<Attachment> attachments)Sets the attachment list.MailMail. setBcc(List<String> bcc)Sets the BCC recipients.MailMail. setBounceAddress(String bounceAddress)Sets the bounce address.MailMail. setCc(List<String> cc)Sets the CC recipients.MailMail. setFrom(String from)Sets the sender address.MailMail. setHeaders(Map<String,List<String>> headers)Sets the list of headers.MailMail. setHtml(String html)Sets the body of the email as HTML.MailMail. setReplyTo(String replyTo)Sets the reply-to address.MailMail. setReplyTo(String... replyTo)Sets the reply-to addresses.MailMail. setSubject(String subject)Sets the email subject.MailMail. setText(String text)Sets the body of the email as plain text.MailMail. setTo(List<String> to)Sets the TO recipients.static MailMail. withHtml(String to, String subject, String html)Creates a new instance ofMailthat contains a "html" body.static MailMail. withText(String to, String subject, String text)Creates a new instance ofMailthat contains a "text" body.Methods in io.quarkus.mailer that return types with arguments of type Mail Modifier and Type Method Description List<Mail>MockMailbox. getMessagesSentTo(String address)Returns a list of mails sent to the given address, whether it was via To, Cc or Bcc.Methods in io.quarkus.mailer with parameters of type Mail Modifier and Type Method Description MailTemplate.MailTemplateInstanceMailTemplate.MailTemplateInstance. mail(Mail mail)default MailTemplate.MailTemplateInstanceMailTemplate. of(Mail mail)voidMailer. send(Mail... mails)Sends the given mails. -
Uses of Mail in io.quarkus.mailer.reactive
Methods in io.quarkus.mailer.reactive with parameters of type Mail Modifier and Type Method Description io.smallrye.mutiny.Uni<Void>ReactiveMailer. send(Mail... mails)Sends the given emails. -
Uses of Mail in io.quarkus.mailer.runtime
Methods in io.quarkus.mailer.runtime that return types with arguments of type Mail Modifier and Type Method Description List<Mail>MockMailboxImpl. getMessagesSentTo(String address)Methods in io.quarkus.mailer.runtime with parameters of type Mail Modifier and Type Method Description MailTemplate.MailTemplateInstanceMailTemplateInstanceImpl. mail(Mail mail)voidBlockingMailerImpl. send(Mail... mails)(package private) io.smallrye.mutiny.Uni<Void>MockMailboxImpl. send(Mail email)io.smallrye.mutiny.Uni<Void>MutinyMailerImpl. send(Mail... mails)
-