Skip to content

Commit

Permalink
Merge pull request #33 from mailjet/typo-fix
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
uavn authored Nov 9, 2020
2 parents 51223a6 + 59fdbf3 commit e50ef76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MailjetMailServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down

0 comments on commit e50ef76

Please sign in to comment.