Skip to content

Instantly share code, notes, and snippets.

@paoga87
Forked from sendgrid-gists/v3-hello-email.php
Created February 17, 2017 01:41
Show Gist options
  • Save paoga87/3b7a94ac85fc87851600a4a19544aeb1 to your computer and use it in GitHub Desktop.
Save paoga87/3b7a94ac85fc87851600a4a19544aeb1 to your computer and use it in GitHub Desktop.
v3 "Hello World" for email, using SendGrid with PHP.
<?php
// using SendGrid's PHP Library
// https://github.com/sendgrid/sendgrid-php
// If you are using Composer (recommended)
require 'vendor/autoload.php';
// If you are not using Composer
// require("path/to/sendgrid-php/sendgrid-php.php");
$from = new SendGrid\Email("Example User", "test@example.com");
$subject = "Sending with SendGrid is Fun";
$to = new SendGrid\Email("Example User", "test@example.com");
$content = new SendGrid\Content("text/plain", "and easy to do anywhere, even with PHP");
$mail = new SendGrid\Mail($from, $subject, $to, $content);
$apiKey = getenv('SENDGRID_API_KEY');
$sg = new \SendGrid($apiKey);
$response = $sg->client->mail()->send()->post($mail);
echo $response->statusCode();
echo $response->headers();
echo $response->body();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment