I have a symfony 2.8 application with fosuserbundle function. The environment devis sent confirmation of registration, but not in the medium prod. There is no log message and smpt configuration is correct.
sf version: 2.8.1 version of swiftmailer-bundle: current (compatible with sf version; 2.*in json composer) fosuserbundle: 1.3.5 ( *in composer)
Dev configurations:
imports:
- { resource: config.yml }
framework:
router:
resource: "%kernel.root_dir%/config/routing_dev.yml"
profiler: { only_exceptions: true }
web_profiler:
toolbar: true
intercept_redirects: true
assetic:
use_controller: true
Does anyone have the same problem?
change
I just tried mail with the following console command in prodenv:php sf --env=prod swiftmailer:email:send
Terminal output:
From: test@antondachauer.de
To: mail@antondachauer.de
Subject: test
Body: test
Sent 1 emails
But the mail has not been sent. In devenv, it works in the terminal as well.