Trait MailerAwareTrait
Provides functionality for loading mailer classes onto properties of the host object.
Example users of this trait are Cake\Controller\Controller and Cake\Console\Command.
        
    Namespace: Cake\Mailer
    
    
    
      
  
  
        Method Summary
- 
          getMailer() protectedReturns a mailer instance. 
Method Detail
getMailer() ΒΆ protected
getMailer(string $name, array<string, mixed>|string|null $config = null): Cake\Mailer\MailerReturns a mailer instance.
Parameters
- 
                string$name
- Mailer's name. 
- 
                array<string, mixed>|string|null$config optional
- Array of configs, or profile name string. 
Returns
Cake\Mailer\MailerThrows
Cake\Mailer\Exception\MissingMailerExceptionif undefined mailer class.
