From 59fdbf313795f73267a6bc5ae854057ee5c4773f Mon Sep 17 00:00:00 2001 From: Artem Bondarenko Date: Fri, 6 Nov 2020 22:09:24 +0200 Subject: [PATCH] fix typo --- src/MailjetMailServiceProvider.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); });