omnismtp / sendinblue
Sendinblue driver for SMTP processing library
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 2
Open Issues: 0
pkg:composer/omnismtp/sendinblue
Requires
- crazymeeks/omnismtp: dev-master
Requires (Dev)
- phpunit/phpunit: ^7.5.0
This package is not auto-updated.
Last update: 2025-09-27 11:31:02 UTC
README
An SMTP driver for OmniSmtp Processing library for PHP
Usage
<?php $sendinblue = OmniSmtp::create(\OmniSmtp\SendInBlue::class, 'test-api-key'); $sendinblue->setSubject('The Mail Subject') ->setFrom('john.doe@example.com') ->setRecipients('jane.doe@example.com', 'test@email.com') ->setContent('<p>Hello From SendInBlue OmniSmtp</p>') ->send();