function sms_rules_action_sms_send in SMS Framework 7
Action Implementation: Send sms.
Parameters
string $to: The sms recipient.
string $message: The message to be sent.
1 string reference to 'sms_rules_action_sms_send'
- sms_rules_action_info in ./
sms.rules.inc - Implements hook_rules_action_info().
File
- ./
sms.rules.inc, line 92 - Rules module integration for the smsframework.
Code
function sms_rules_action_sms_send($to, $message) {
sms_send($to, $message);
}