联系表格7短信与twilio集成

时间:2015-06-19 03:58:15

标签: wordpress sms contact-form-7

如何设置以便每当有人填写表单时我都可以发送短信?我使用https://www.twilio.com作为短信。 提交表格时,我在哪里以联系表格7包含行动?感谢您的任何帮助,谢谢!

4 个答案:

答案 0 :(得分:1)

您可以自己参与CF 7流程。

请查看hereherehere以获取更多信息以及有关如何操作的示例。

挂钩邮件发送到的地方/之后可能对你想做的事情感兴趣。

答案 1 :(得分:1)

用这个1做对了,现在剩下的就是试图回应提交给sms消息的信息。我可以直接使用echo吗?

在过滤器更改时也注意到这一点,不确定这会影响http://contactform7.com/2015/05/18/contact-form-7-42-beta/

add_action( 'wpcf7_mail_sent', 'your_wpcf7_mail_sent_function' );

function your_wpcf7_mail_sent_function() {
   // Get the PHP helper library from twilio.com/docs/php/install
   require_once( get_stylesheet_directory() . '/twilio-php-master/Services/Twilio.php'); // Loads the library

   $account_sid = 'AC914e20c15791698c1d86cfc297e30f64'; 
   $auth_token = '1e962df32508157599929e545033c869'; 
   $client = new Services_Twilio($account_sid, $auth_token); 

   $client->account->messages->create(array( 
       'To' => "+60167833549", 
       'From' => "+13479604387", 
       'Body' => "form submited",   
   ));

}

答案 2 :(得分:1)

请使用此WordPress插件

https://wordpress.org/plugins/really-simple-sms-api/

由于

答案 3 :(得分:0)

这是一个免费的插件,用于接收来自wordpress联系表格7的短信通知:

https://wordpress.org/plugins/cf7-international-sms-integration/

您可以使用任何短信网关SMS API Ex配置此插件。 Spring Edge。