diff --git a/src/MailjetMailServiceProvider.php b/src/MailjetMailServiceProvider.php index 06411b8..d04cc1e 100644 --- a/src/MailjetMailServiceProvider.php +++ b/src/MailjetMailServiceProvider.php @@ -17,8 +17,8 @@ protected function registerSwiftTransport() parent::registerSwiftTransport(); app('swift.transport')->extend('mailjet', function ($app) { $config = $this->app['config']->get('services.mailjet', array()); - $call = $this->app['config']->get('services.mailjet.transactionnal.call', true); - $options = $this->app['config']->get('services.mailjet.transactionnal.options', array()); + $call = $this->app['config']->get('services.mailjet.transactional.call', true); + $options = $this->app['config']->get('services.mailjet.transactional.options', array()); return new MailjetTransport(new \Swift_Events_SimpleEventDispatcher(), $config['key'], $config['secret'], $call, $options); });