SendGrid

Send Gridとは

メール配信サービス
メールサーバ不要でWebAPIを利用してメールを送信できる

APIキー取得

「Integrate using our Web API」を選択

「Create Key」

有効化手続きへ

実装

インストール

composer require sendgrid/sendgrid

ソースコード

<?php
require ‘vendor/autoload.php’;
$email = new \SendGrid\Mail\Mail();
$email->setFrom(“test@example.com”, “送信者”);
$email->setSubject(“題名”);
$email->addTo(“test@example.com”, “受信者”);
$email->addContent(“text/plain”, “本文”);
$email->addContent(“text/html”, “<strong>HTML本文</strong>”);
$sendgrid = new \SendGrid(getenv(‘上で取得したAPIキー’));
try {
  $response = $sendgrid->send($email);
  print $response->statusCode() . “\n”;
  print_r($response->headers());
  print $response->body() . “\n”;
} catch (Exception $e) {
  echo ‘Caught exception: ‘. $e->getMessage() .”\n”;
}

API

前の記事

Slack IncomingWebhook