Integrate SMS with Other Services Using wp_sms_send

Updated on Jan 03, 2023

The wp_sms_send action is a useful tool for developers using the WP SMS plugin. This action will run after an SMS is sent, allowing you to perform additional actions or customizations based on the SMS that was just sent. Whether you want to track the success of your SMS campaigns or create custom integrations with other services, the wp_sms_send action is a powerful tool that can help you achieve your goals

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');