I have built a WFB contact form that a customer can use to contact several individuals in the company. To do this, I used a drop down box that contain the name of each individual to be reached . . . that works great. The only issue that bothers me is that all the email addresses are listed in the HTML created for the form. A simple "view frame source" reveals all the emails to anyone might want them.... see sample code below;
<div class="fb-dropdown">
<select id="item23_select_1" name="MSI_Contact" data-hint="" required>
<option id="item23_0_option" value="" selected>
Choose one
</option>
<option id="item23_1_option" value="abc@abc123.com">
President - John Smith
</option>
<option id="item23_2_option" value="def@abc123.com">
Operations Manager - Jane Smith
</option>
<option id="item23_3_option" value="ghi@abc123.com">
Sales Vice President - John Doe
</option>
</select>
</div>
Does anyone know of a work around so my customers emails are not wide open to bots and right clicks?
Thanks
Onward Through The fog!