All other data are visible in email except list data
Hi.  I'm having an issue with my UM data.
See the screen shot of my email.
 
 
     10/11/2009 3:17 pm  |  #1 chris384639
10/11/2009 3:17 pm  |  #1 chris384639  Hi.  I'm having an issue with my UM data.
See the screen shot of my email.
 10/12/2009 3:42 am  |  #2 jenkolaka19379118
10/12/2009 3:42 am  |  #2 jenkolaka19379118  Hi Chris,
I haven't looked at your zip files but if you are using static list options you MUST make sure the value is set to the options you want. e.g.
<select>
<option value="Monday">Monday</option>
<option value="Tuesday">Tuesday</option>
</select>
Universal Email passes the value to the email when you bind the form elements to the body of your email. So just check that you have the <option value=""> set to what you would like to display.
 10/13/2009 11:13 am  |  #3 Jason ByrnesWebAssist
10/13/2009 11:13 am  |  #3 Jason ByrnesWebAssist
        The values of a multiple select list will passed as an Array, you can use the PHP implode() function to convert the Array to a comma separated list.
in the WA_UniversalEmail/WAUE_index_1.php file, change line 94:
$MailBody = $MailBody .  ((isset($_POST["Appointment_request_group_Best_times[]"]))?$_POST["Appointment_request_group_Best_times[]"]:"");
to:
$MailBody = $MailBody .  ((isset($_POST["Appointment_request_group_Best_times"]))?implode(", ", $_POST["Appointment_request_group_Best_times"]):"");Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.
These out-of-the-box solutions provide you proven, tested applications that can be up and running now. Build a store, a gallery, or a web-based email solution.