我在没有插件的情况下在WordPress中发送短信困难,我有一个API,但该API无效。
示例:
function mysite_woocommerce_order_status_processing( $order_id ) {
$mobile="123456";
$url="****/api.php?username=******&password=1234&source=UPDATE&dmobile=".$mobile."&message='.$msg.' ";
$response = wp_remote_get( $url );
//print_r($response);
}
add_action( 'woocommerce_order_status_processing','mysite_woocommerce_order_status_processing' );
我正在努力克服上述问题,我可以通过该钩子发送电子邮件,但不能发送短信。如果有任何WordPress开发人员帮助我,那就太棒了!