Quarkus - Sending emails

This guide demonstrates how your Quarkus application can send emails using an SMTP server.

Prerequisites

To complete this guide, you need:

  • less than 15 minutes

  • The SMTP hostname, port and credentials, and an email address

  • an IDE

  • JDK 1.8+ installed with JAVA_HOME configured appropriately

  • Apache Maven 3.6.2+

  • GraalVM installed if you want to run in native mode.

Architecture

In this guide, we are going to see how you can send emails from a Quarkus application. It covers simple emails, attachments, inlined attachments, the reactive and imperative APIs…​

Creating the Maven Project

Create a new project with the following command:

  1. mvn io.quarkus:quarkus-maven-plugin:1.7.6.Final:create \
  2. -DprojectGroupId=org.acme \
  3. -DprojectArtifactId=sending-email-quickstart \
  4. -Dextensions="mailer"
  5. cd sending-email-quickstart

If you already have an existing project, add the mailer extension:

  1. ./mvnw quarkus:add-extensions -Dextensions="mailer"

This will add the following to your pom.xml:

  1. <dependency>
  2. <groupId>io.quarkus</groupId>
  3. <artifactId>quarkus-mailer</artifactId>
  4. </dependency>

Configuring the mailer

The Quarkus mailer is using SMTP. In the src/main/resources/application.properties file, you need to configure the host, port, username, password as well as the other configuration aspect. Note that the password can also be configured using system properties and environment variables.

Here is an example using sendgrid:

  1. quarkus.mailer.from=test@quarkus.io
  2. quarkus.mailer.host=smtp.sendgrid.net
  3. quarkus.mailer.port=465
  4. quarkus.mailer.ssl=true
  5. quarkus.mailer.username=....
  6. quarkus.mailer.password=....
  7. quarkus.mailer.mock=false

It is recommended to encrypt any sensitive data, such as the quarkus.mailer.password. One approach is to save the value into a secure store like HashiCorp Vault, and refer to it from the configuration. Assuming for instance that Vault contains key mail-password at path myapps/myapp/myconfig, then the mailer extension can be simply configured as:

  1. # path within the kv secret engine where is located the application sensitive configuration
  2. quarkus.vault.secret-config-kv-path=myapps/myapp/myconfig
  3. quarkus.mailer.password=${mail-password}

Please note that the password value is evaluated only once, at startup time. If mail-password was changed in Vault, the only way to get the new value would be to restart the application.

For more information about the Mailer extension configuration please refer to the Configuration Reference.

Sending simple emails

In a JAX-RS resource, or in a bean, you can inject the mailer as follows:

  1. @Inject
  2. Mailer mailer;
  3. @Inject
  4. ReactiveMailer reactiveMailer;

There are 2 APIs:

  • io.quarkus.mailer.Mailer provides the imperative (blocking and synchronous) API;

  • io.quarkus.mailer.reactive.ReactiveMailer provides the reactive (non-blocking and asynchronous) API

The two APIs are equivalent feature-wise. Actually the Mailer implementation is built on top of the ReactiveMailer implementation.
Deprecation

io.quarkus.mailer.ReactiveMailer is deprecated in favor of io.quarkus.mailer.reactive.ReactiveMailer.

Mutiny

The reactive mailer uses Mutiny reactive types, if you’re not familiar with them, read the Getting Started with Reactive guide first.

To send a simple email, proceed as follows:

  1. // Imperative API:
  2. mailer.send(Mail.withText("to@acme.org", "A simple email from quarkus", "This is my body."));
  3. // Reactive API:
  4. Uni<Void> stage = reactiveMailer.send(Mail.withText("to@acme.org", "A reactive email from quarkus", "This is my body."));

For example, you can use the Mailer in a JAX-RS endpoint as follows:

  1. @GET
  2. @Path("/simple")
  3. public Response sendASimpleEmail() {
  4. mailer.send(Mail.withText("to@acme.org", "A simple email from quarkus", "This is my body"));
  5. return Response.accepted().build();
  6. }
  7. @GET
  8. @Path("/async")
  9. public CompletionStage<Response> sendASimpleEmailAsync() {
  10. return reactiveMailer.send(
  11. Mail.withText("to@acme.org", "A reactive email from quarkus", "This is my body"))
  12. .subscribeAsCompletionStage()
  13. .thenApply(x -> Response.accepted().build());
  14. }

With the quarkus-resteasy-mutiny extension, you can return an instance of Uni directly.

With such a JAX-RS resource, you can check that everything is working with:

  1. curl http://localhost:8080/simple
  2. curl http://localhost:8080/async

You can create new io.quarkus.mailer.Mail instances from the constructor or from the Mail.withText and Mail.withHtml helper methods. The Mail instance lets you add recipients (to, cc, or bcc), set the subject, headers, sender (from) address…​

You can also send several Mail objects in one call:

  1. mailer.send(mail1, mail2, mail3);

Sending attachments

To send attachment, just use the addAttachment methods on the io.quarkus.mailer.Mail instance:

  1. @GET
  2. @Path("/attachment")
  3. public Response sendEmailWithAttachment() {
  4. mailer.send(Mail.withText("to@acme.org", "An email from quarkus with attachment",
  5. "This is my body")
  6. .addAttachment("my-file.txt",
  7. "content of my file".getBytes(), "text/plain"));
  8. return Response.accepted().build();
  9. }

Attachments can be created from raw bytes (as shown in the snippet) or files.

Sending HTML emails with inlined attachments

When sending HTML email, you can add inlined attachments. For example, you can send an image with your email, and this image will be displayed in the mail content. If you put the image file into resources folder, you should specify the full path to the file. “e.g.” “META-INF/resources/quarkus-logo.png” otherwise quarkus will lookup in the root folder of the project

  1. @GET
  2. @Path("/html")
  3. public Response sendingHTML() {
  4. String body = "<strong>Hello!</strong>" + "\n" +
  5. "<p>Here is an image for you: <img src=\"cid:my-image@quarkus.io\"/></p>" +
  6. "<p>Regards</p>";
  7. mailer.send(Mail.withHtml("to@acme.org", "An email in HTML", body)
  8. .addInlineAttachment("quarkus-logo.png",
  9. new File("quarkus-logo.png"),
  10. "image/png", "<my-image@quarkus.io>"));
  11. return Response.accepted().build();
  12. }

Note the content-id format and reference. By spec, when you create the inline attachment, the content-id must be structured as follows: <id@domain>. If you don’t wrap your content-id between <>, it is automatically wrapped for you. When you want to reference your attachment, for instance in the src attribute, use cid:id@domain (without the < and >).

Message Body Based on Qute Templates

It’s also possible to inject a mail template, where the message body is created automatically using Qute templates.

  1. @Path("")
  2. public class MailingResource {
  3. @CheckedTemplate
  4. class Templates {
  5. public static native MailTemplateInstance hello(String name); (1)
  6. }
  7. @GET
  8. @Path("/mail")
  9. public CompletionStage<Response> send() {
  10. // the template looks like: Hello {name}! (2)
  11. return Templates.hello("John")
  12. .to("to@acme.org") (3)
  13. .subject("Hello from Qute template")
  14. .send() (4)
  15. .subscribeAsCompletionStage()
  16. .thenApply(x -> Response.accepted().build());
  17. }
  18. }
1By convention, the enclosing class name and method names are used to locate the template. In this particular case, we will use the MailingResource/hello.html and MailingResource/hello.txt templates to create the message body.
2Set the data used in the template.
3Create a mail template instance and set the recipient.
4MailTemplate.send() triggers the rendering and, once finished, sends the e-mail via a Mailer instance.
Injected mail templates are validated during build. If there is no matching template in src/main/resources/templates the build fails.

You can also do this without type-safe templates:

  1. @Inject
  2. MailTemplate hello; (1)
  3. @GET
  4. @Path("/mail")
  5. public CompletionStage<Response> send() {
  6. return hello.to("to@acme.org") (2)
  7. .subject("Hello from Qute template")
  8. // the template looks like: Hello {name}!
  9. .data("name", "John") (3)
  10. .send() (4)
  11. .subscribeAsCompletionStage()
  12. .thenApply(x -> Response.accepted().build());
  13. }
1If there is no @ResourcePath qualifier provided, the field name is used to locate the template. In this particular case, we will use the hello.html and hello.txt templates to create the message body.
2Create a mail template instance and set the recipient.
3Set the data used in the template.
4MailTemplate.send() triggers the rendering and, once finished, sends the e-mail via a Mailer instance.
Injected mail templates are validated during build. If there is no matching template in src/main/resources/templates the build fails.

Testing email sending

Because it is very inconvenient to send emails during development and testing, you can set the quarkus.mailer.mock boolean configuration to true to not actually send emails but print them on stdout and collect them in a MockMailbox bean instead. This is the default if you are running Quarkus in DEV or TEST mode.

You can then write tests to verify that your emails were sent, for example, by a REST endpoint:

  1. @QuarkusTest
  2. class MailTest {
  3. private static final String TO = "foo@quarkus.io";
  4. @Inject
  5. MockMailbox mailbox;
  6. @BeforeEach
  7. void init() {
  8. mailbox.clear();
  9. }
  10. @Test
  11. void testTextMail() throws MessagingException, IOException {
  12. // call a REST endpoint that sends email
  13. given()
  14. .when()
  15. .get("/send-email")
  16. .then()
  17. .statusCode(202)
  18. .body(is("OK"));
  19. // verify that it was sent
  20. List<Mail> sent = mailbox.getMessagesSentTo(TO);
  21. assertThat(sent).hasSize(1);
  22. Mail actual = sent.get(0);
  23. assertThat(actual.getText()).contains("Wake up!");
  24. assertThat(actual.getSubject()).isEqualTo("Alarm!");
  25. assertThat(mailbox.getTotalMessagesSent()).isEqualTo(6);
  26. }
  27. }

Gmail specific configuration

If you want to use the Gmail SMTP server, first create a dedicated password in Google Account > Security > App passwords or go to https://myaccount.google.com/apppasswords.

When done, you can configure your Quarkus application by adding the following properties to your application.properties:

With TLS:

  1. quarkus.mailer.auth-methods=DIGEST-MD5 CRAM-SHA256 CRAM-SHA1 CRAM-MD5 PLAIN LOGIN
  2. quarkus.mailer.from=YOUREMAIL@gmail.com
  3. quarkus.mailer.host=smtp.gmail.com
  4. quarkus.mailer.port=587
  5. quarkus.mailer.start-tls=REQUIRED
  6. quarkus.mailer.username=YOUREMAIL@gmail.com
  7. quarkus.mailer.password=YOURGENERATEDAPPLICATIONPASSWORD

Or with SSL:

  1. quarkus.mailer.auth-methods=DIGEST-MD5 CRAM-SHA256 CRAM-SHA1 CRAM-MD5 PLAIN LOGIN
  2. quarkus.mailer.from=YOUREMAIL@gmail.com
  3. quarkus.mailer.host=smtp.gmail.com
  4. quarkus.mailer.port=465
  5. quarkus.mailer.ssl=true
  6. quarkus.mailer.username=YOUREMAIL@gmail.com
  7. quarkus.mailer.password=YOURGENERATEDAPPLICATIONPASSWORD

The quarkus.mailer.auth-methods configuration option is needed for the Quarkus mailer to support password authentication with Gmail. By default both the mailer and Gmail default to XOAUTH2 which requires registering an application, getting tokens, etc.

Using SSL with native executables

Note that if you enable SSL for the mailer and you want to build a native executable, you will need to enable the SSL support. Please refer to the Using SSL With Native Executables guide for more information.

Using the underlying Vert.x Mail Client

The Quarkus Mailer is implemented on top of the Vert.x Mail Client, providing an asynchronous and non-blocking way to send emails. If you need fine control on how the mail is sent, for instance if you need to retrieve the message ids, you can inject the underlying client, and use it directly:

  1. @Inject MailClient client;

Three API flavors are exposed:

  • the Mutiny client (io.vertx.mutiny.ext.mail.MailClient)

  • the Axle client (io.vertx.axle.ext.mail.MailClient), using CompletionStage and Reactive Streams Publisher - deprecated, it is recommended to switch to the Mutiny client

  • the RX Java 2 client (io.vertx.reactivex.ext.mail.MailClient) - deprecated, it is recommended to switch to the Mutiny client

  • the bare client (io.vertx.ext.mail.MailClient)

Check the Using Vert.x guide for further details about these different APIs and how to select the most suitable for you.

The retrieved MailClient is configured using the configuration key presented above. You can also create your own instance, and pass your own configuration.

Conclusion

This guide has shown how you can send emails from a Quarkus application. The mailer extension works in JVM and native mode.

Mailer Configuration Reference