This commit is contained in:
Constantin Simonis 2025-01-23 18:27:00 +01:00
parent ec84a5ebd8
commit f8e280f32f
Signed by: csimonis
GPG Key ID: 3878FF77C24AF4D2
2 changed files with 1 additions and 2 deletions

2
.env
View File

@ -20,6 +20,6 @@ APP_SECRET=
###< symfony/framework-bundle ###
###> symfony/mailer ###
MAILER_DSN=${MAILER_DSN:-smtp://localhost:1025}
MAILER_DSN=smtp://${MAILER_USER:-null}:${MAILER_PASSWORD:-null}@${MAILER_HOST:-localhost}:${MAILER_PORT:-1025}
CONTACT_MAIL=${CONTACT_MAIL:-contact@localhost}
###< symfony/mailer ###

View File

@ -4,7 +4,6 @@ namespace App\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;