Added configuration for resend

This commit is contained in:
2025-07-15 16:52:47 +02:00
parent 7a4b8b7c32
commit 0c442bd797
3 changed files with 82 additions and 64 deletions
+17 -1
View File
@@ -2,4 +2,20 @@
return [
'debug' => true,
];
'email' => [
'transport' => [
'type' => 'smtp',
'host' => 'smtp.resend.com',
'port' => 587,
'security' => true,
'auth' => true,
'username' => 'resend',
'password' => 're_87XcxJAD_43XdRZwdsTC2nYXoXs5UN2NY',
],
'presets' => [
'contact' => [
'from' => 'no-replay@fits-apps.net'
]
]
]
];