59 lines
1.6 KiB
PHP
59 lines
1.6 KiB
PHP
<?php
|
|
/*
|
|
If you see this text in your browser, PHP is not configured correctly on this hosting provider.
|
|
Contact your hosting provider regarding PHP configuration for your site.
|
|
|
|
PHP file generated by Adobe Muse CC 2014.2.0.284
|
|
*/
|
|
|
|
require_once('form_process.php');
|
|
|
|
$form = array(
|
|
'subject' => 'Home Form Submission',
|
|
'heading' => 'New Form Submission',
|
|
'success_redirect' => '',
|
|
'resources' => array(
|
|
'checkbox_checked' => 'Checked',
|
|
'checkbox_unchecked' => 'Unchecked',
|
|
'submitted_from' => 'Form submitted from website: %s',
|
|
'submitted_by' => 'Visitor IP address: %s',
|
|
'too_many_submissions' => 'Too many recent submissions from this IP',
|
|
'failed_to_send_email' => 'Failed to send email',
|
|
'invalid_reCAPTCHA_private_key' => 'Invalid reCAPTCHA private key.',
|
|
'invalid_field_type' => 'Unknown field type \'%s\'.',
|
|
'unknown_method' => 'Unknown server request method'
|
|
),
|
|
'email' => array(
|
|
'from' => 'thepaperpilot+site@gmail.com',
|
|
'to' => 'thepaperpilot+site@gmail.com'
|
|
),
|
|
'fields' => array(
|
|
'custom_U164' => array(
|
|
'type' => 'string',
|
|
'label' => 'Name',
|
|
'required' => true,
|
|
'errors' => array(
|
|
'required' => 'Field \'Name\' is required.'
|
|
)
|
|
),
|
|
'Email' => array(
|
|
'type' => 'email',
|
|
'label' => 'Email',
|
|
'required' => true,
|
|
'errors' => array(
|
|
'required' => 'Field \'Email\' is required.',
|
|
'format' => 'Field \'Email\' has an invalid email.'
|
|
)
|
|
),
|
|
'custom_U170' => array(
|
|
'type' => 'string',
|
|
'label' => 'Message',
|
|
'required' => false,
|
|
'errors' => array(
|
|
)
|
|
)
|
|
)
|
|
);
|
|
|
|
process_form($form);
|
|
?>
|