Skip to content

Instantly share code, notes, and snippets.

@geoloqi
Created August 5, 2010 03:29
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 geoloqi/509181 to your computer and use it in GitHub Desktop.
Save geoloqi/509181 to your computer and use it in GitHub Desktop.
<?php
include('GoogleVoice.php');
$gv = new GoogleVoice('your.username', 'yourpassword');
try
{
$gv->sendSMS('9995551212', 'This is your message');
}
catch(Exception $e)
{
echo $e->getMessage();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment