summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorhorus2026-03-25 14:40:36 +0100
committerhorus2026-03-25 14:40:36 +0100
commit54ef8f3b68efd19dfbbcc21f041105f90976085a (patch)
tree56b27ac77af40e31c8c97164e776a38c5ef6f5c7 /config
parent742526761dea5fe0df74d04c038fb9feb45bce94 (diff)
downloadcurious-54ef8f3b68efd19dfbbcc21f041105f90976085a.tar.gz
config for mailjet
Diffstat (limited to 'config')
-rw-r--r--config/app.php11
-rw-r--r--config/mail.php3
-rw-r--r--config/services.php5
3 files changed, 19 insertions, 0 deletions
diff --git a/config/app.php b/config/app.php
index 5757ea7..400826a 100644
--- a/config/app.php
+++ b/config/app.php
@@ -175,6 +175,15 @@ return [
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
+ /*
+ * custom
+ */
+ Mailjet\LaravelMailjet\MailjetServiceProvider::class,
+ #Mailjet\LaravelMailjet\MailjetMailServiceProvider::class,
+ #Mailjet\LaravelMailjet\MailjetServiceProvider::class,
+ Mailjet\LaravelMailjet\Providers\MailjetClientServiceProvider::class,
+ Mailjet\LaravelMailjet\Providers\CampaignDraftServiceProvider::class,
+
],
/*
@@ -227,6 +236,8 @@ return [
'Validator' => Illuminate\Support\Facades\Validator::class,
'View' => Illuminate\Support\Facades\View::class,
+ 'Mailjet' => Mailjet\LaravelMailjet\Facades\Mailjet::class,
+
],
];
diff --git a/config/mail.php b/config/mail.php
index 67fb340..06c740c 100644
--- a/config/mail.php
+++ b/config/mail.php
@@ -60,6 +60,9 @@ return [
'array' => [
'transport' => 'array',
],
+ 'mailjet' => [
+ 'transport' => 'mailjet',
+ ],
],
/*
diff --git a/config/services.php b/config/services.php
index 2a1d616..5d996c8 100644
--- a/config/services.php
+++ b/config/services.php
@@ -30,4 +30,9 @@ return [
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
+ 'mailjet' => [
+ 'key' => env('MAILJET_APIKEY'),
+ 'secret' => env('MAILJET_APISECRET'),
+ ]
+
];