This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'wpcf7_before_send_mail', 'wpcf7_custom_data', 90, 1 ); | |
function wpcf7_custom_data( $WPCF7_ContactForm ){ | |
// Submission object, that generated when the user click the submit button. | |
$submission = WPCF7_Submission :: get_instance(); | |
if ( $submission ){ | |
$posted_data = $submission->get_posted_data(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using HtmlAgilityPack; | |
using System; | |
using System.IO; | |
using System.Linq; | |
using System.Threading; | |
namespace HTML_to_PHP | |
{ | |
class Program | |
{ |