If you install SMSIfy plugin, you can fire an SMS programatically like this:
$args = new stdClass();
$args->message = "Hello from SMSify plugin";
$args->send_to = "NUMBER_IN_INTERNATIONAL_FORMAT"; //Make sure you use international number format WITHOUT the plus sign (+).
do_action('smsify_send_sms_hook', $args);