$user, 'api_key' => $pass, 'to' => $to, 'subject' => $subject, 'html' => $message, 'from' => '## FROM EMAIL GOES HERE ##', ); $sendgrid = new SendGrid($p['api_user'], $p['api_key']); $mail = new SendGrid\Email(); $mail->addTo($p['to'])-> setFrom($p['from'])-> setSubject($p['subject'])-> setText(strip_tags($p['html']))-> setHtml($p['html']); $sendgrid->send($mail); } }