bitweb / mail
BitWeb extension for sending emails.
Installs: 2 334
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 12
Forks: 1
Open Issues: 0
pkg:composer/bitweb/mail
Requires
- bitweb/stdlib: ~1.1
- zendframework/zend-eventmanager: ~2.2
- zendframework/zend-mail: ~2.2
This package is auto-updated.
Last update: 2023-06-21 17:58:31 UTC
README
Parameters when using the event listener.
[
    'to' => [
        'email' => '[email protected]',
        'name' => 'You'
    ],
    'cc' => [
        [
            'email' => '[email protected]',
            'name' => 'Me'
        ]
    ],
    'bcc' => [
        [
            'email' => '[email protected]',
            'name' => 'Me'
        ]
    ],
    'from' => [
        'email' => '[email protected]',
        'name' => 'Me'
    ],
    'subject' => 'Application rejected',
    'body' => 'Your application has been rejected.',
    'attachments' => [
        'path/to/my/file.file'
    ]
]