user_email ); } require_once EZ_TOC_PATH ."/includes/deactivate-feedback.php"; } /** * send feedback via email * * @since 1.4.0 */ function eztoc_send_feedback() { if( isset( $_POST['data'] ) ) { parse_str( $_POST['data'], $form ); } $text = ''; if( isset( $form['eztoc_disable_text'] ) ) { $text = implode( "\n\r", $form['eztoc_disable_text'] ); } $headers = array(); $from = isset( $form['eztoc_disable_from'] ) ? $form['eztoc_disable_from'] : ''; if( $from ) { $headers[] = "From: $from"; $headers[] = "Reply-To: $from"; } $subject = isset( $form['eztoc_disable_reason'] ) ? $form['eztoc_disable_reason'] : '(no reason given)'; if($subject == 'technical issue'){ $text = trim($text); if(!empty($text)){ $text = 'technical issue description: '.$text; }else{ $text = 'no description: '.$text; } } $success = wp_mail( 'team@magazine3.in', $subject, $text, $headers ); die(); } add_action( 'wp_ajax_eztoc_send_feedback', 'eztoc_send_feedback' ); function eztoc_enqueue_makebetter_email_js(){ if( !is_admin() ) { return; } wp_enqueue_script( 'eztoc-make-better-js', EZ_TOC_URL . 'includes/feedback.js', array( 'jquery' )); wp_enqueue_style( 'eztoc-make-better-css', EZ_TOC_URL . 'includes/feedback.css', false ); } add_action( 'admin_enqueue_scripts', 'eztoc_enqueue_makebetter_email_js' ); add_action('wp_ajax_eztoc_subscribe_newsletter','eztoc_subscribe_for_newsletter'); add_action('wp_ajax_nopriv_eztoc_subscribe_newsletter','eztoc_subscribe_for_newsletter'); function eztoc_subscribe_for_newsletter(){ if( !wp_verify_nonce( $_POST['eztoc_security_nonce'], 'eztoc_security_nonce')){ return 'nonce not verified'; } $api_url = 'http://magazine3.company/wp-json/api/central/email/subscribe'; $api_params = array( 'name' => sanitize_text_field($_POST['name']), 'email'=> sanitize_text_field($_POST['email']), 'website'=> sanitize_text_field($_POST['website']), 'type'=> 'eztoc' ); $response = wp_remote_post( $api_url, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) ); $response = wp_remote_retrieve_body( $response ); echo $response; die; }