Unlock this challenge:
Why is it recommended to have MAILER_DSN set to null://null in tests?
MAILER_DSN
null://null
To allow PHPUnit to automatically mock email services without configuration.
To make your tests faster by not sending real emails.
To reduce the memory usage of the test environment.
To ensure that email attachments are ignored during testing.