napoleon / omnismtp-sendgrid
Sendgrid driver for SMTP processing library
0.2
2020-08-25 08:14 UTC
Requires
- php: >=7.3.0
- crazymeeks/omnismtp: dev-master
- sendgrid/sendgrid: ~7
Requires (Dev)
- phpunit/phpunit: ^7.5.0
This package is auto-updated.
Last update: 2025-03-08 23:24:23 UTC
README
Installation
composer require napoleon/omnismtp-sendgrid
How to use
Single Recipients
<?php $key = 'api-key'; $sendgrid = \OmniSmtp\OmniSmtp::create(\Napoleon\OmniSmtp\SendGrid::class, $key); $sendgrid->setSubject('The Mail Subject') ->setFrom('napoleon@example.com') ->setRecipients('testemail1@example.com') ->setContent('<p>Hello From SendGrid OmniMail</p>') ->send();
Multiple Recipients
<?php $key = 'api-key'; $sendgrid = \OmniSmtp\OmniSmtp::create(\Napoleon\OmniSmtp\SendGrid::class, $key); $sendgrid->setSubject('The Mail Subject') ->setFrom('napoleon@example.com') ->setRecipients('testemail1@example.com', 'testemail2@example.com') ->setContent('<p>Hello From SendGrid OmniMail</p>') ->send();