We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52e5673 commit 828810bCopy full SHA for 828810b
Service/Mailer.php
@@ -34,7 +34,7 @@ public function __construct(ContainerInterface $container, EngineInterface $temp
34
$this->templating = $templating;
35
36
$devMode = $this->container->getParameter('nti_email.dev_mode');
37
- $this->devMode = is_array($devMode) && isset($devMode["enabled"]) && $devMode["enabled"] === true;
+ $this->devMode = is_array($devMode) && isset($devMode["enabled"]) && $devMode["enabled"] == "true";
38
if($this->devMode) {
39
$this->devTo = $devMode["to"];
40
$this->devCc = $devMode["cc"];
0 commit comments