I use a docker image called maildev - it simulates a SMTP server and I can view all sent emails locally in a web UI to make sure the format looks visually OK
EDIT: Here's the docker-compose.yml file I use for development on most of my apps. Make sure to leave the MAILDEV_IP environment variable as it is there, it's important to make sure the healthcheck runs properly:
ah I like this one, I'll definitely give it a try, cause I was just looking for something to give me a sense of how it looks visually before I send it. Thanks man
I use a docker image called maildev - it simulates a SMTP server and I can view all sent emails locally in a web UI to make sure the format looks visually OK
EDIT: Here's the docker-compose.yml file I use for development on most of my apps. Make sure to leave the MAILDEV_IP environment variable as it is there, it's important to make sure the healthcheck runs properly:
In terms of validating that emails will be sent at the right time to the right person - this is where automated tests are super useful.
Then I just let it rip!
ah I like this one, I'll definitely give it a try, cause I was just looking for something to give me a sense of how it looks visually before I send it. Thanks man