Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 379 Bytes

mailer.md

File metadata and controls

18 lines (13 loc) · 379 Bytes

Mailer

Yii2-ticket-support includes special component named Mailer, which is used to send emails in four different instances:

Configuration

Mailer can be configured as followed:

...
'support' => [
    'class' => 'akiraz2\support\Module',
    'mailer' => [
        'sender' => 'support@myhost.com', // or ['support@myhost.com' => 'Technical Support']  
],
...