feat(mail): implement MailService for tenant-specific SMTP configuration and update MailTestService to utilize it

This commit is contained in:
2026-07-21 16:43:09 -03:00
parent 22da4966e9
commit 3fe48fbfa5
5 changed files with 219 additions and 3 deletions

View File

@@ -25,6 +25,7 @@ class EmailIntegrationSeeder extends Seeder
'MAIL_USERNAME' => 'required|email',
'MAIL_PASSWORD' => 'required|string',
'MAIL_FROM_ADDRESS' => 'required|email',
'MAIL_FROM_NAME' => 'nullable|string|max:255',
],
]
);