/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Mailer
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Mailer/MailerAwareTrait.php (1548B)
|string|null $config Array of configs, or profile name string.
* @return \Cake\Mailer\Mailer
* @throws \Cake\Mailer\Exception\MissingMailerException if undefined mailer class.
*/
protected function getMailer(string $name, $config = null): Mailer
{
$className = App::className($name, 'Mailer', 'Mailer');
if ($className === null) {
throw new MissingMailerException(compact('name'));
}
return new $className($config);
}
}