I have been trying to set up email for a web page using SendGrid's PHP API, and I'm having no luck. I have tried their code from the Azure website as well as various examples I found while trying to Google it, and every time it returns nothing as a response, and the email isn't set. Here is the code I'm talking about:
<?php
$url = 'https://api.sendgrid.com/';
$user = 'USERNAME';
$pass = 'PASSWORD';
$params = array(
'api_user' => $user,
'api_key' => $pass,
'to' => 'email@gmail.com',
'subject' => 'testing from curl',
'html' => 'testing body',
'text' => 'testing body',
'from' => 'anna@contoso.com',
);
$request = $url.'api/mail.send.json';
// Generate curl request
$session = curl_init($request);
// Tell curl to use HTTP POST
curl_setopt ($session, CURLOPT_POST, true);
// Tell curl that this is the body of the POST
curl_setopt ($session, CURLOPT_POSTFIELDS, $params);
// Tell curl not to return headers, but do return the response
curl_setopt($session, CURLOPT_HEADER, false);
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
// obtain response
$response = curl_exec($session);
curl_close($session);
// print everything out
print_r($response);
?>
It is also worth noting that I've tried using sendgrid-php accompanied with the code supplied with it, and that causes the page to simply not load. I'm really stumped right now, and any help is greatly appreciated.