Files
roi-theme/wp-content/plugins/fluent-smtp/app/Bindings.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

26 lines
1.3 KiB
PHP
Executable File

<?php
$singletons = [
'manager' => 'FluentMail\App\Services\Mailer\Manager',
'smtp' => 'FluentMail\App\Services\Mailer\Providers\Smtp\Handler',
'ses' => 'FluentMail\App\Services\Mailer\Providers\AmazonSes\Handler',
'mailgun' => 'FluentMail\App\Services\Mailer\Providers\Mailgun\Handler',
'sendgrid' => 'FluentMail\App\Services\Mailer\Providers\SendGrid\Handler',
'pepipost' => 'FluentMail\App\Services\Mailer\Providers\PepiPost\Handler',
'sparkpost' => 'FluentMail\App\Services\Mailer\Providers\SparkPost\Handler',
'default' => 'FluentMail\App\Services\Mailer\Providers\DefaultMail\Handler',
'sendinblue' => 'FluentMail\App\Services\Mailer\Providers\SendInBlue\Handler',
'gmail' => 'FluentMail\App\Services\Mailer\Providers\Gmail\Handler',
'outlook' => 'FluentMail\App\Services\Mailer\Providers\Outlook\Handler',
'postmark' => 'FluentMail\App\Services\Mailer\Providers\Postmark\Handler',
'elasticmail' => 'FluentMail\App\Services\Mailer\Providers\ElasticMail\Handler',
'smtp2go' => 'FluentMail\App\Services\Mailer\Providers\Smtp2Go\Handler',
];
foreach ($singletons as $key => $className) {
$app->alias($className, $key);
$app->singleton($className, function($app) use ($className) {
return new $className();
});
}