mn create-app example.micronaut.micronautguide \
--features=email-amazon-ses,aws-v2-sdk,validation,yaml,reactor \
--build=maven \
--lang=groovy \
--test=spock
Send Emails with Amazon SES from the Micronaut Framework
Learn how to send emails with Amazon SES from a Micronaut application
Authors: Sergio del Amo, Sergio del Amo
Micronaut Version: 4.6.3
1. Getting Started
In this guide, we will create a Micronaut application written in Groovy.
2. What you will need
To complete this guide, you will need the following:
-
Some time on your hands
-
A decent text editor or IDE (e.g. IntelliJ IDEA)
-
JDK 17 or greater installed with
JAVA_HOME
configured appropriately
3. Solution
We recommend that you follow the instructions in the next sections and create the application step by step. However, you can go right to the completed example.
-
Download and unzip the source
4. Writing the Application
Create an application using the Micronaut Command Line Interface or with Micronaut Launch.
If you don’t specify the --build argument, Gradle with the Kotlin DSL is used as the build tool. If you don’t specify the --lang argument, Java is used as the language.If you don’t specify the --test argument, JUnit is used for Java and Kotlin, and Spock is used for Groovy.
|
The previous command creates a Micronaut application with the default package example.micronaut
in a directory named micronautguide
.
If you use Micronaut Launch, select Micronaut Application as application type and add email-amazon-ses
, aws-v2-sdk
, validation
, yaml
, and reactor
features.
If you have an existing Micronaut application and want to add the functionality described here, you can view the dependency and configuration changes from the specified features, and apply those changes to your application. |
4.1. Controller
Create a MailController
class. This class uses a collaborator, emailSender
, to send an email.
You can send emails asynchronously using the AysnEmailSender API or synchronously using the EmailSender API.
package example.micronaut
import groovy.util.logging.Slf4j
import io.micronaut.email.AsyncEmailSender
import io.micronaut.email.Email
import io.micronaut.email.EmailException
import io.micronaut.http.HttpResponse
import io.micronaut.http.annotation.Body
import io.micronaut.http.annotation.Controller
import io.micronaut.http.annotation.Post
import io.micronaut.http.exceptions.HttpStatusException
import org.reactivestreams.Publisher
import reactor.core.publisher.Mono
import software.amazon.awssdk.services.ses.model.SendEmailResponse
import software.amazon.awssdk.services.ses.model.SesRequest
import software.amazon.awssdk.services.ses.model.SesResponse
import static io.micronaut.email.BodyType.HTML
import static io.micronaut.http.HttpStatus.UNPROCESSABLE_ENTITY
@Slf4j
@Controller('/mail') (1)
class MailController {
private final AsyncEmailSender<SesRequest, SesResponse> emailSender
MailController(AsyncEmailSender<SesRequest, SesResponse> emailSender) { (2)
this.emailSender = emailSender
}
@Post('/send') (3)
Publisher<HttpResponse<?>> send(@Body('to') String to) { (4)
Mono.from(emailSender.sendAsync(Email.builder()
.to(to)
.subject('Sending email with Amazon SES is Fun')
.body('and <em>easy</em> to do anywhere with <strong>Micronaut Email</strong>', HTML)))
.doOnNext(rsp -> {
if (rsp instanceof SendEmailResponse) {
log.info('message id: {}', ((SendEmailResponse) rsp).messageId())
}
}).onErrorMap(EmailException, t -> new HttpStatusException(UNPROCESSABLE_ENTITY, 'Email could not be sent'))
.map(rsp -> HttpResponse.accepted()) (5)
}
}
1 | The class is defined as a controller with the @Controller annotation mapped to the path /mail/send . |
2 | Use constructor injection to inject a bean of type AsyncEmailSender . |
3 | The @Post annotation maps the send method to an HTTP POST request on /mail/send . |
4 | You can use a qualifier within the HTTP request body. For example, you can use a reference to a nested JSON attribute. |
5 | Return 202 ACCEPTED as the result if the email delivery succeeds |
4.2. Configuration
If you want to send every email with the same address, you can set it via configuration:
---
micronaut:
email:
from:
email: 'john@micronaut.example'
This is possible thanks to Email Decorators.
4.3. AWS SES
Amazon Simple Email Service (Amazon SES) is a cloud-based email-sending service designed to help digital marketers and application developers send marketing, notification, and transactional emails. It is a reliable, cost-effective service for businesses of all sizes that use email to keep in contact with their customers.
4.3.1. Dependency
Because we added the email-amazon-ses
feature, the application contains the following dependency:
<dependency>
<groupId>com.micronaut.email</groupId>
<artifactId>micronaut-email-amazon-ses</artifactId>
<scope>compile</scope>
</dependency>
4.4. Micronaut AWS SDK v2
Micronaut Amazon SES integration uses Micronaut AWS SDK v2 integration.
Because we added the aws-v2-sdk
feature, the application contains the following dependency:
<dependency>
<groupId>io.micronaut.aws</groupId>
<artifactId>micronaut-aws-sdk-v2</artifactId>
<scope>compile</scope>
</dependency>
Read about:
4.5. Test
Create a test bean that replaces the bean of type AsyncTransactionalEmailSender.
package example.micronaut
import io.micronaut.context.annotation.Replaces
import io.micronaut.context.annotation.Requires
import io.micronaut.email.AsyncTransactionalEmailSender
import io.micronaut.email.Email
import io.micronaut.email.EmailException
import io.micronaut.email.ses.AsyncSesEmailSender
import jakarta.inject.Named
import jakarta.inject.Singleton
import org.reactivestreams.Publisher
import reactor.core.publisher.Mono
import software.amazon.awssdk.services.ses.model.SendEmailResponse
import software.amazon.awssdk.services.ses.model.SesRequest
import software.amazon.awssdk.services.ses.model.SesResponse
import jakarta.validation.Valid
import jakarta.validation.constraints.NotNull
import java.util.function.Consumer
@Requires(property = 'spec.name', value = 'MailControllerSpec') (1)
@Singleton
@Replaces(AsyncSesEmailSender)
@Named(AsyncSesEmailSender.NAME)
class EmailSenderReplacement implements AsyncTransactionalEmailSender<SesRequest, SesResponse> {
final List<Email> emails = []
@Override
String getName() {
AsyncSesEmailSender.NAME
}
@Override
Publisher<SesResponse> sendAsync(@NotNull @Valid Email email,
@NotNull Consumer<SesRequest> emailRequest) throws EmailException {
emails << email
Mono.just(SendEmailResponse.builder().messageId('xxx-yyy-zzz').build())
}
}
1 | Combine @Requires and properties (either via the @Property annotation or by passing properties when starting the context) to avoid bean pollution. |
Write a test that uses EmailSenderReplacement
to verify that the contents of the email match expectations.
package example.micronaut
import io.micronaut.context.BeanContext
import io.micronaut.context.annotation.Property
import io.micronaut.email.AsyncTransactionalEmailSender
import io.micronaut.email.Email
import io.micronaut.http.HttpRequest
import io.micronaut.http.HttpResponse
import io.micronaut.http.client.HttpClient
import io.micronaut.http.client.annotation.Client
import io.micronaut.test.extensions.spock.annotation.MicronautTest
import jakarta.inject.Inject
import spock.lang.Specification
import static io.micronaut.email.BodyType.HTML
import static io.micronaut.http.HttpStatus.ACCEPTED
@Property(name = 'spec.name', value = 'MailControllerSpec') (1)
@MicronautTest (2)
class MailControllerSpec extends Specification {
@Inject
@Client('/')
HttpClient httpClient (3)
@Inject
BeanContext beanContext
void getMailSendEndpointSendsAnEmail() {
when:
HttpResponse<?> response = httpClient.toBlocking().exchange(
HttpRequest.POST('/mail/send', [to: 'johnsnow@micronaut.example']))
then:
ACCEPTED == response.status()
when:
AsyncTransactionalEmailSender<?, ?> sender = beanContext.getBean(AsyncTransactionalEmailSender)
then:
sender instanceof EmailSenderReplacement
when:
EmailSenderReplacement sendgridSender = (EmailSenderReplacement) sender
then:
sendgridSender.emails
1 == sendgridSender.emails.size()
when:
Email email = sendgridSender.emails[0]
then:
email.from.email == 'john@micronaut.example'
null != email.to
email.to.first()
email.to.first().email == 'johnsnow@micronaut.example'
email.subject == 'Sending email with Amazon SES is Fun'
email.body
email.body.get(HTML).present
email.body.get(HTML).get() == 'and <em>easy</em> to do anywhere with <strong>Micronaut Email</strong>'
}
}
1 | Combine @Requires and properties (either via the @Property annotation or by passing properties when starting the context) to avoid bean pollution. |
2 | Annotate the class with @MicronautTest so the Micronaut framework will initialize the application context and the embedded server. More info. |
3 | Inject the HttpClient bean and point it to the embedded server. |
5. Testing the Application
To run the tests:
./mvnw test
5.1. Running the Application
5.1.1. From email address
Change the property mail.email.from.email
to match your Amazon SES verified sender.
5.1.2. Supply AWS Credentials
An easy way to supply AWS Credentials is to define the following environment variables:
export AWS_ACCESS_KEY_ID=xxx
export AWS_SECRET_ACCESS_KEY=xxx
5.1.3. Run
To run the application, use the ./mvnw mn:run
command, which starts the application on port 8080.
5.1.4. Invoke
curl -d '{"to":"john@micronaut.example"}'
-H "Content-Type: application/json"
-X POST http://localhost:8080/mail/send
6. Next steps
Explore more features with Micronaut Guides.
Learn more about Micronaut Email integration.
7. Help with the Micronaut Framework
The Micronaut Foundation sponsored the creation of this Guide. A variety of consulting and support services are available.
8. License
All guides are released with an Apache license 2.0 license for the code and a Creative Commons Attribution 4.0 license for the writing and media (images…). |