All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.mailer.reactive.ReactiveMailer Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.mailer.reactive;

import io.quarkus.mailer.Mail;
import io.smallrye.mutiny.Uni;

/**
 * A mailer to send email asynchronously.
 */
public interface ReactiveMailer {

    /**
     * Sends the given emails.
     *
     * @param mails the emails to send, must not be {@code null}, must not contain {@code null}
     * @return a {@link Uni} indicating when the mails have been sent. The {@link Uni} may fire a failure if the
     *         emails cannot be sent.
     */
    Uni send(Mail... mails);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy