Description
Run the following action when sending SMS with this plugin.
Example:
Send mail when sending SMS.
function send_mail_when_send_sms($message_info) {
wp_mail('[email protected]', 'Send SMS', $message_info);
}
add_action('wp_sms_send', 'send_mail_when_send_sms');