Implementado servicio de envio de emails y funcion de envio a correo unico en etorno de desarrollo

This commit is contained in:
unknown
2025-03-27 12:08:09 +01:00
parent 4a6b974e94
commit f37805d310
4 changed files with 31 additions and 85 deletions

View File

@ -60,4 +60,14 @@ class Services extends BaseService
{
return new ChatService();
}
public static function emailService($getShared = true)
{
if ($getShared) {
return static::getSharedInstance('emailService');
}
return new \App\Services\EmailService();
}
}