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

io.quarkus.mailer.Mailer Maven / Gradle / Ivy

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

import io.quarkus.mailer.reactive.ReactiveMailer;

/**
 * A mailer to send email.
 *
 * @see ReactiveMailer
 */
public interface Mailer {

    /**
     * Sends the given mails.
     *
     * @param mails the mails, must not be {@code null}.
     */
    void send(Mail... mails);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy