Design and CSS styles
Version 7.x > Design and CSS styles > Another BizForm Question View modes: 
User avatar
Member
Member
dbraun-pediatricweb - 2/12/2013 4:58:15 PM
   
Another BizForm Question
In their current content form, my client wishes to include a drop down menu of selected topics. The client desires to have the form data mailed to a specific person for each topic selected. How do I do this using the BizForm setup?

User avatar
Kentico Support
Kentico Support
kentico_radekm - 2/12/2013 5:24:59 PM
   
RE:Another BizForm Question
Hello.

I wrote a KB article dealing with similar situation. Its principle should be the same and you should be able to apply it for your scenario. The article is here.

Best Regards,
Radek Macalik

User avatar
Kentico Legend
Kentico Legend
Brenden Kehren - 2/12/2013 9:40:11 PM
   
RE:Another BizForm Question
To go a step further from what Radek stated, you can make it very dynamic so the content editor can maintain the topics and emails associated with the topic. Simply create a Custom Table with 3 fields, ItemID (Primary Key), Topic (text), Email (text). Populate the table with data. Then on your field use a Select query and simply do
SELECT [Topic] AS [Name], Email AS [Value] FROM Your_CustomTable ORDER BY [TOPIC].