Added Email Capability

This commit is contained in:
2026-07-07 20:59:05 +10:00
parent c6065577af
commit 6d0ecb19c9
40 changed files with 1153 additions and 128 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ return [
'debug' => (bool) env('APP_DEBUG', false),
'verify_ssl' => env('VERIFY_SSL', true),
'test_email' => env('TEST_EMAIL', ''),
/*
|--------------------------------------------------------------------------
| Application URL
+3 -1
View File
@@ -96,7 +96,9 @@ return [
],
'retry_after' => 60,
],
'mailgun' => [
'transport' => 'mailgun',
],
],
/*
+6
View File
@@ -34,5 +34,11 @@ return [
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
],
],
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
'scheme' => 'https',
],
];