-
Notifications
You must be signed in to change notification settings - Fork 2
AmazonSes
Viames Marino edited this page Feb 23, 2026
·
1 revision
Pair\Services\AmazonSes sends email through AWS SES.
setConfig(array $config): voidcheckConfig(): voidsend(array $recipients, string $subject, string $title, string $text, array $attachments = [], array $ccs = []): void
use Pair\Services\AmazonSes;
$ses = new AmazonSes($config);
$ses->checkConfig();
$ses->send(
[['name' => 'John', 'email' => 'john@example.com']],
'Order confirmed',
'Order #123',
'Thanks for your purchase.'
);