Title: hareld's Replies | WordPress.org

---

# hareld

  [  ](https://wordpress.org/support/users/hareld/)

 *   [Profile](https://wordpress.org/support/users/hareld/)
 *   [Topics Started](https://wordpress.org/support/users/hareld/topics/)
 *   [Replies Created](https://wordpress.org/support/users/hareld/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/hareld/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/hareld/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/hareld/engagements/)
 *   [Favorites](https://wordpress.org/support/users/hareld/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Hook for a specific form](https://wordpress.org/support/topic/hook-for-a-specific-form/)
 *  Thread Starter [hareld](https://wordpress.org/support/users/hareld/)
 * (@hareld)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/hook-for-a-specific-form/#post-3514917)
 * I found this [thread here](http://wordpress.org/support/topic/plugin-contact-form-7-php-after-form-submit?replies=16),
   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');
   
       	}
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problem in move Pages to Posts within the WP database](https://wordpress.org/support/topic/problem-in-move-pages-to-posts-within-the-wp-database/)
 *  Thread Starter [hareld](https://wordpress.org/support/users/hareld/)
 * (@hareld)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/problem-in-move-pages-to-posts-within-the-wp-database/#post-3506866)
 * OK.
    Found a solution!
 * Installed: Permalink Editor plugin.

Viewing 2 replies - 1 through 2 (of 2 total)