0
メールの送信に問題があります。私はスプールなしでメールを送ることはできません。 ドキュメント内私はちょうど参照してください$mailer->send();
http://symfony.com/doc/current/email.htmlSymfony/SwiftMailer /スプールなしでメールを送信できません
しかし、私にとっては何もしません。電子メールを送信する 、私はこれを行う必要があります:問題になる可能性が
$mailer->send($message);
$spool = $mailer->getTransport()->getSpool();
$transport = $this->get('swiftmailer.transport.real');
$spool->flushQueue($transport);
ContactType.php
$builder
->add('name', TextType::class, [
'required' => false
])
->add('email', EmailType::class)
->add('message', TextareaType::class);
を?