Skip to content

Instantly share code, notes, and snippets.

@velizarn
Last active December 24, 2021 10:26
Show Gist options
  • Save velizarn/0536995b13e6a1f79d2d to your computer and use it in GitHub Desktop.
Save velizarn/0536995b13e6a1f79d2d to your computer and use it in GitHub Desktop.
Sample script to send email via SendGrid
<?php
require('path-to-lib/httpful/bootstrap.php');
$url = "https://api.sendgrid.com/api/mail.send.json";
$payload = array(
'to' => "[email protected]",
'from' => "[email protected]",
'fromname' => "Delivery team",
'subject' => "Subject goes here",
'html' => "<p>This is a test message sent by SendGrid.</p>",
'x-smtpapi' => json_encode(array("category" => array("Test", "Webdev"))),
);
$response = \Httpful\Request::post($url)
->addHeader('Authorization', 'Bearer [your_api_key]')
->body($payload, 'application/x-www-form-urlencoded')
->send();
var_dump($response->body);
/* end of file */
/* ---------------------------------- */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment