È sufficiente registrarsi e fare la procedura (c'è l'account free).
Dopo la registrazione e conferma email, devi scegliere
"Integrate using our Web API or SMTP relay" poi "Web api" e quindi "PHP". Ti apparirà una scaletta di cose da fare.
Sostanzialmente dovrai generare una API-KEY, scaricare il pacchetto della libreria e caricarlo nel tuo sito (cartella sendgrid-php).
Una volta creata api-key e caricato la cartella, dovrai modificare lo script fornito ad esempio così:
(inserendo la api-key in "TUA_API_KEY" e per test, modifica la email del destinatario
Codice PHP:
<?php
//require 'vendor/autoload.php'; // If you're using Composer (recommended)
// Comment out the above line if not using Composer
require("./sendgrid-php/sendgrid-php.php");
// If not using Composer, uncomment the above line and
// download sendgrid-php.zip from the latest release here,
// replacing <PATH TO> with the path to the sendgrid-php.php file,
// which is included in the download:
// https://github.com/sendgrid/sendgrid-php/releases
$email = new \SendGrid\Mail\Mail();
$email->setFrom("test@example.com", "Example User");
$email->setSubject("Sending with SendGrid is Fun");
$email->addTo("EMAIL_DESTINATARIO", "Example User");
$email->addContent("text/plain", "and easy to do anywhere, even with PHP");
$email->addContent(
"text/html", "<strong>and easy to do anywhere, even with PHP</strong>"
);
$sendgrid = new \SendGrid('TUA_API_KEY');
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";
}
eseguendo questo script sarà come invocare la funzione mail().
Ciao!