Skip to content

Instantly share code, notes, and snippets.

@JesseSumrak
Last active April 7, 2021 15:39
Refactor the Handler to send emails
php
private \SendGrid\Mail\Mail $mail;
private \SendGrid $mailer;
private array $config;
public function __construct(
\SendGrid\Mail\Mail $mail,
\SendGrid $mailer,
array $config
) {
$this->mail = $mail;
$this->mailer = $mailer;
$this->config = $config;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment