Skip to content
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.

BitWeb/mail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mail

Parameters when using the event listener.

[
    'to' => [
        'email' => 'you@domain.com',
        'name' => 'You'
    ],
    'cc' => [
        [
            'email' => 'me@domain.com',
            'name' => 'Me'
        ]
    ],
    'bcc' => [
        [
            'email' => 'me@domain.com',
            'name' => 'Me'
        ]
    ],
    'from' => [
        'email' => 'me@domain.com',
        'name' => 'Me'
    ],
    'subject' => 'Application rejected',
    'body' => 'Your application has been rejected.',
    'attachments' => [
        'path/to/my/file.file'
    ]
]