Class MailClient

java.lang.Object
io.vertx.mutiny.ext.mail.MailClient
All Implemented Interfaces:
MutinyDelegate

public class MailClient extends Object implements MutinyDelegate
SMTP mail client for Vert.x

A simple asynchronous API for sending mails from Vert.x applications

NOTE: This class has been automatically generated from the original non Mutiny-ified interface using Vert.x codegen.

  • Field Details

  • Constructor Details

    • MailClient

      public MailClient(io.vertx.ext.mail.MailClient delegate)
    • MailClient

      public MailClient(Object delegate)
  • Method Details

    • getDelegate

      public io.vertx.ext.mail.MailClient getDelegate()
      Specified by:
      getDelegate in interface MutinyDelegate
      Returns:
      the delegate used by this Mutiny object of generated type
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • create

      public static MailClient create(Vertx vertx, io.vertx.ext.mail.MailConfig config)
      Parameters:
      vertx - the Vertx instance the operation will be run in
      config - MailConfig configuration to be used for sending mails
      Returns:
      MailClient instance that can then be used to send multiple mails
    • createShared

      public static MailClient createShared(Vertx vertx, io.vertx.ext.mail.MailConfig config, String poolName)
      Parameters:
      vertx - the Vert.x instance
      config - the configuration
      poolName - the pool name
      Returns:
      the client
    • createShared

      public static MailClient createShared(Vertx vertx, io.vertx.ext.mail.MailConfig config)
      Parameters:
      vertx - the Vert.x instance
      config - the configuration
      Returns:
      the client
    • sendMail

      @CheckReturnValue public io.smallrye.mutiny.Uni<io.vertx.ext.mail.MailResult> sendMail(io.vertx.ext.mail.MailMessage email)
      send a single mail via MailClient

      Unlike the bare Vert.x variant, this method returns a Uni. Don't forget to subscribe on it to trigger the operation.

      Parameters:
      email - MailMessage object containing the mail text, from/to, attachments etc
      Returns:
      the uni firing the result of the operation when completed, or a failure if the operation failed.
    • sendMailAndAwait

      public io.vertx.ext.mail.MailResult sendMailAndAwait(io.vertx.ext.mail.MailMessage email)
      Blocking variant of sendMail(MailMessage).

      This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).

      Parameters:
      email - MailMessage object containing the mail text, from/to, attachments etc
      Returns:
      the MailResult instance produced by the operation.
    • sendMailAndForget

      public MailClient sendMailAndForget(io.vertx.ext.mail.MailMessage email)
      Variant of sendMail(MailMessage) that ignores the result of the operation.

      This method subscribes on the result of sendMail(MailMessage), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation from sendMail(MailMessage) but you don't need to compose it with other operations.

      Parameters:
      email - MailMessage object containing the mail text, from/to, attachments etc
      Returns:
      the instance of MailClient to chain method calls.
    • close

      @CheckReturnValue public io.smallrye.mutiny.Uni<Void> close()
      Close the MailClient

      Unlike the bare Vert.x variant, this method returns a Uni. Don't forget to subscribe on it to trigger the operation.

      Returns:
      the uni firing the result of the operation when completed, or a failure if the operation failed.
    • closeAndAwait

      public Void closeAndAwait()
      Blocking variant of close().

      This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).

      Returns:
      the Void instance produced by the operation.
    • closeAndForget

      public void closeAndForget()
      Variant of close() that ignores the result of the operation.

      This method subscribes on the result of close(), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation from close() but you don't need to compose it with other operations.

    • newInstance

      public static MailClient newInstance(io.vertx.ext.mail.MailClient arg)