bitweb/mail

This package is abandoned and no longer maintained. No replacement package was suggested.

BitWeb extension for sending emails.

1.1.2 2015-05-15 06:51 UTC

This package is auto-updated.

Last update: 2023-06-21 17:58:31 UTC


README

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'
    ]
]