Thanks yellow1912
How do you get the new fields added the the email that's sent. It got it to display.
As a test I tried the following code:
includes/modules/pages/contact_us/header_php.php
Code:
$html_msg['NEW_FIELD1'] = strip_tags($_POST['new_field1']);
includes/template/YOUR_TEMPLATE/templates/tpl_contact_us_default.php
Code:
<label class="inputLabel" for="new-field1"><?php echo ENTRY_NEW_FIELD1; ?></label>
<?php echo zen_draw_input_field('new-field1', ($error ? $_POST['new-field1'] : $email), ' size="40" id="new-field1"') . '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?>
<br class="clearBoth" />