spring-boot icon indicating copy to clipboard operation
spring-boot copied to clipboard

Add mail sender support for spring-boot-testcontainers

Open linux-china opened this issue 1 year ago • 9 comments

Mail catcher is good solution to test email sending by SMTP, such as:

  • https://mailcatcher.me/
  • https://github.com/linux-china/mail-catcher
  • https://github.com/maildev/maildev
  • https://github.com/mailhog/MailHog

It will be good to add MailConnectionDetails support to make email sending test easy with mail catcher container.

linux-china avatar Apr 24 '23 10:04 linux-china

We could update the auto-configuration to add MailConnectionDetails but I'm not sure how much we can do beyond that. As the list above shows, there are a variety of options for running an SMTP server. In terms of official Docker images for the above, there are:

How the SMTP server is configured differs from image to image so I don't think we can offer a general purpose implementation for getting connection details from a container. MailHog appears to be the most popular, so perhaps that's the place to start? It would feel a little odd to have MailConnectionDetails and only have a properties-based implementation.

wilkinsona avatar Apr 28 '23 09:04 wilkinsona

MailHog is good for me. All these mail catchers, they almost use 1025 as SMTP port, and I think we just use 1025 as exposed port for spring.mail.port.

linux-china avatar Apr 28 '23 10:04 linux-china

The port should be fine. It's username and password that are more complicated. For example, maildev uses MAILDEV_OUTGOING_USER and MAILDEV_OUTGOING_PASS environment variables to configure the credentials for sending mail. These are easy for us to extract from the container and use in the connection details. On the other hand, MailHog seems to use a file which would be much harder to deal with unless we only supported the defaults.

wilkinsona avatar Apr 28 '23 10:04 wilkinsona

@wilkinsona, is it possible to introduce org.springframework.boot.properties.xxxx labels, and these labels will be added ad Spring Boot properties. Example as following:

services:
  mail:
    image: "maildev/maildev"
    ports:
      - '1025'
    labels:
      org.springframework.boot.properties.spring.mail.host = "${container.getHost()}"
      org.springframework.boot.properties.spring.mail.port = "${container.getMappedPort(1025)}"
      org.springframework.boot.properties.spring.mail.username = demo

Value cloud be a SpEL, and container is the variable of GenericContainer or sub GenericContainer.
This way is still ok for other containers, such as NATS, Apache Pulsar etc.

linux-china avatar Apr 29 '23 06:04 linux-china

It would feel a little odd to have MailConnectionDetails and only have a properties-based implementation.

Given ConnectionDetails is the entrypoint to do this, it wouldn't be that odd. Doing that, will allow to users create libraries with specific ConnectionDetailsFactory where there are more than one image or not an official image to choose such as mail and activemq. One example is RedisContainerConnectionsDetails, currently only supports standalone but there are images where cluster can be enabled and it's totally fine if spring boot doesn't provide RedisClusterConnectionDetailsFactory but the infrastructure is already there to do it for third-parties.

This is probably related.

eddumelendez avatar Apr 29 '23 21:04 eddumelendez

For cases like this one and probably #35080 https://github.com/spring-projects/spring-boot/commit/26566d4a30233bb002449a2c0d7a8ffc84d3438e would fix it

eddumelendez avatar May 03 '23 07:05 eddumelendez

this would be a wonderful feature, however, I am not sure how much is MailHog maintained

edit: https://github.com/axllent/mailpit This seems to be an actively maintained project

dominik-kovacs avatar Mar 24 '24 16:03 dominik-kovacs