Skip to content

Instantly share code, notes, and snippets.

@martinsteel
Created October 5, 2012 14:42
Show Gist options
  • Save martinsteel/3840195 to your computer and use it in GitHub Desktop.
Save martinsteel/3840195 to your computer and use it in GitHub Desktop.
Disable SSL on Clockwork
<?php
$options = array( 'ssl' => false );
$clockwork = new Clockwork( $API_KEY, $options );
$message = array( 'to' => '441234567891', 'message' => 'This is a test!' );
$result = $clockwork->send( $message );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment