Skip to content

Instantly share code, notes, and snippets.

@christiankn
Created August 15, 2010 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christiankn/525322 to your computer and use it in GitHub Desktop.
Save christiankn/525322 to your computer and use it in GitHub Desktop.
<?php
$email = "ch_knapp@me.com";//$_REQUEST['email'];
$message = "En liten melding til meg"; //$_REQUEST['message'];
$url = "https://sendgrid.com/api/mail.send.json?api_user=app170069@heroku.com&api_key=568c4ce091724248d8&to=ch_knapp@me.com&subject=Hendvendelse%20fra%20Mac-Gyver&text=" + $message + "&from=post@jafnadhr.no&replyto=" + $email;
$response = http_get($url, array("timeout"=>1), $info);
print_r($info);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment