[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
forms
/
actions
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 activecampaign.php
9,485 B
SET
[ EDIT ]
|
[ DEL ]
📄 activity-log.php
972 B
SET
[ EDIT ]
|
[ DEL ]
📄 cf7db.php
713 B
SET
[ EDIT ]
|
[ DEL ]
📄 convertkit.php
7,495 B
SET
[ EDIT ]
|
[ DEL ]
📄 discord.php
5,994 B
SET
[ EDIT ]
|
[ DEL ]
📄 drip.php
9,014 B
SET
[ EDIT ]
|
[ DEL ]
📄 email.php
16,146 B
SET
[ EDIT ]
|
[ DEL ]
📄 email2.php
1,051 B
SET
[ EDIT ]
|
[ DEL ]
📄 getresponse.php
9,004 B
SET
[ EDIT ]
|
[ DEL ]
📄 mailchimp.php
13,226 B
SET
[ EDIT ]
|
[ DEL ]
📄 mailerlite.php
8,129 B
SET
[ EDIT ]
|
[ DEL ]
📄 mailpoet.php
2,982 B
SET
[ EDIT ]
|
[ DEL ]
📄 mailpoet3.php
3,576 B
SET
[ EDIT ]
|
[ DEL ]
📄 redirect.php
1,833 B
SET
[ EDIT ]
|
[ DEL ]
📄 slack.php
6,213 B
SET
[ EDIT ]
|
[ DEL ]
📄 webhook.php
3,198 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: email2.php
<?php namespace ElementorPro\Modules\Forms\Actions; use Elementor\Controls_Manager; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Email2 extends Email { public function get_name() { return 'email2'; } public function get_label() { return esc_html__( 'Email 2', 'elementor-pro' ); } protected function get_control_id( $control_id ) { return $control_id . '_2'; } protected function get_reply_to( $record, $fields ) { return isset( $fields['email_reply_to'] ) ? $fields['email_reply_to'] : ''; } public function register_settings_section( $widget ) { parent::register_settings_section( $widget ); $admin_email = get_option( 'admin_email' ); $widget->update_control( $this->get_control_id( 'email_reply_to' ), [ 'type' => Controls_Manager::TEXT, 'default' => $admin_email, 'placeholder' => $admin_email, 'ai' => [ 'active' => false, ], ] ); $widget->update_control( $this->get_control_id( 'form_metadata' ), [ 'default' => [], ] ); } }