| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/ninja-forms/includes/Config/ |
Upload File : |
<?php if ( ! defined( 'ABSPATH' ) ) exit;
return apply_filters( 'ninja_forms_action_email_settings', array(
/*
|--------------------------------------------------------------------------
| Primary Settings
|--------------------------------------------------------------------------
*/
/*
* To
*/
'to' => array(
'name' => 'to',
'type' => 'textbox',
'group' => 'primary',
'label' => __( 'To', 'ninja-forms' ),
'placeholder' => __( 'Email address or search for a field', 'ninja-forms' ),
'value' => '{wp:admin_email}',
'width' => 'one-half',
'use_merge_tags' => TRUE,
),
/*
* Reply To
*/
'reply_to' => array(
'name' => 'reply_to',
'type' => 'textbox',
'group' => 'primary',
'label' => __( 'Reply To', 'ninja-forms' ),
'placeholder' => '',
'value' => '',
'width' => 'one-half',
'use_merge_tags' => TRUE,
),
/*
* Subject
*/
'email_subject' => array(
'name' => 'email_subject',
'type' => 'textbox',
'group' => 'primary',
'label' => __( 'Subject', 'ninja-forms' ),
'placeholder' => __( 'Subject Text or seach for a field', 'ninja-forms' ),
'value' => __( 'Ninja Forms Submission', 'ninja-forms' ),
'width' => 'full',
'use_merge_tags' => TRUE,
),
/*
* Email Message
*/
'email_message' => array(
'name' => 'email_message',
'type' => 'rte',
'group' => 'primary',
'label' => __( 'Email Message', 'ninja-forms' ),
'placeholder' => '',
'value' => '{fields_table}',
'width' => 'full',
'use_merge_tags' => array(
'include' => array(
'calcs',
),
),
'deps' => array(
'email_format' => 'html'
)
),
'email_message_plain' => array(
'name' => 'email_message_plain',
'type' => 'textarea',
'group' => 'primary',
'label' => __( 'Email Message', 'ninja-forms' ),
'placeholder' => '',
'value' => '',
'width' => 'full',
'use_merge_tags' => TRUE,
'deps' => array(
'email_format' => 'plain'
)
),
/*
|--------------------------------------------------------------------------
| Advanced Settings
|--------------------------------------------------------------------------
*/
/*
* From Name
*/
'from_name' => array(
'name' => 'from_name',
'type' => 'textbox',
'group' => 'advanced',
'label' => __( 'From Name', 'ninja-forms' ),
'placeholder' => __( 'Name or fields', 'ninja-forms' ),
'value' => '',
'width' => 'one-half',
'use_merge_tags' => TRUE,
),
/*
* From Address
*/
'from_address' => array(
'name' => 'from_address',
'type' => 'textbox',
'group' => 'advanced',
'label' => __( 'From Address', 'ninja-forms' ),
'placeholder' => __( 'One email address or field', 'ninja-forms' ),
'value' => '',
'use_merge_tags' => TRUE,
),
/*
* Format
*/
'email_format' => array(
'name' => 'email_format',
'type' => 'select',
'options' => array(
array( 'label' => __( 'HTML', 'ninja-forms' ), 'value' => 'html' ),
array( 'label' => __( 'Plain Text', 'ninja-forms' ), 'value' => 'plain' )
),
'group' => 'advanced',
'label' => __( 'Format', 'ninja-forms' ),
'value' => 'html',
),
/*
* Cc
*/
'cc' => array(
'name' => 'cc',
'type' => 'textbox',
'group' => 'advanced',
'label' => __( 'Cc', 'ninja-forms' ),
'placeholder' => '',
'value' => '',
'use_merge_tags' => TRUE,
),
/*
* Bcc
*/
'bcc' => array(
'name' => 'bcc',
'type' => 'textbox',
'group' => 'advanced',
'label' => __( 'Bcc', 'ninja-forms' ),
'placeholder' => '',
'value' => '',
'use_merge_tags' => TRUE,
),
/*
* Attach CSV
*/
'attach_csv' => array(
'name' => 'attach_csv',
'type' => 'toggle',
'group' => 'primary',
'label' => __( 'Attach CSV', 'ninja-forms' ),
),
));