symfony_mailer.mailer_policy._.yml configuration: email_theme: theme: my_custom_theme 02.04.2026 | Michael Ebert Set a custom theme to be used by Symfony Mailer
settings.local.php // mailsender command for the "Symfony Mailer" module for drupal 10 $settings['mailer_sendmail_commands'] = [ '/usr/local/bin/mailpit sendmail -t --smtp-addr=mail:1025', ]; 24.02.2026 | Michael Ebert How to configure mailpit in local dev environment if normal sendmail will fail.
settings-stage.php /** * Send mails via php_mail */ $config['system.mail']['interface']['default'] = 'php_mail'; 01.03.2024 | Michael Ebert Environment based mail handler override in settings.php