Thread Starter
hareld
(@hareld)
I found this thread here, so I might use this code?
add_action( 'wpcf7_mail_sent', 'your_wpcf7_mail_sent_function' );
function your_wpcf7_mail_sent_function( $contact_form ) {
$title = $contact_form->title;
$posted_data = $contact_form->posted_data;
if ( 'Your Contact Form Title Here' == $title ) {
$phone = $posted_data['phone']; // if you have a field with name "phone"
require_once 'SMS.class.php';
$api = new LittleSMS('vasya', 'qwerty123', true);
$api->sendSMS($phone, 'Бугагашенька!', 'vasya');
}
}
Thread Starter
hareld
(@hareld)
OK.
Found a solution!
Installed: Permalink Editor plugin.