Hi I was successful in creating email to show just fields with completed content; however I notice that checkbox fields are not showing the selected options. Here's 1st part of the code. The ''Preferred Contact Phone' line is the checkbox field.
----------------------------------------------------------------------------------
When the email is sent the end result is:
Preferred Contact Phone: Array
Please advise what other code is required to have the correct content to appear. It should have been:
Preferred Contact Phone: Home, Cell
When I generate a separate email to submitter using the auto generated code (table), the check box field appears correctly with the selected options.
Your assistance is appreciated. Thanks
<p>
<?php
$var_array = array(
'First Name' => 'firstname',
'Last Name' => 'lastname',
'School Year' => 'schoolYear',
'Street Address' => 'streetAddress',
'Address' => 'cityStateZC',
'Email' => 'email',
'Home Phone' => 'homephone',
'Cell Phone' => 'cellphone',
'Preferred Contact Phone' => 'sharePhone',
'Rate Range' => 'rateRange',
'School' => 'schoolName',
'Grade Subject Level' => 'gradeSubjectLevel',
----------------------------------------------------------------------------------
When the email is sent the end result is:
Preferred Contact Phone: Array
Please advise what other code is required to have the correct content to appear. It should have been:
Preferred Contact Phone: Home, Cell
When I generate a separate email to submitter using the auto generated code (table), the check box field appears correctly with the selected options.
Your assistance is appreciated. Thanks