This question came in to me today, and as a former library worker (well, I was a shelver in high school - one of the best jobs I ever had), I wanted to give her a hand and thought I'd share the question/solution.

Susan wrote:

Programming challenged librarian needs a contact form that includes radio buttons for different departments. Depending on which radio button is selected, the completed form is sent to a different email address.

(ex: I want to ask about my overdues (email to overdues@mylibrary... I want to ask about children's programs (email to kids@mylibrary)...)

I can get a basic contact/feedback form to work for one email but I'm clueless on how to have it select different options. If you have any suggestions/directions for me I would really appreciate it. THANKS!

So a basic contact form will ask for your name, email address, and comments. It will then verify the form fields, and if all is well, mail the results:

<cfmail to="admin@mysite.com" from="#form.email#" subject="Site Comments" wrap="80"> #form.comments# </cfmail>

So to properly route the email, our librarian had added radio controls to her form. Most likely something like this:

Your question concerns...

<input type="radio" name="department" value="overdue">Overdue Fines

<input type="radio" name="department" value="kids">Children Programs

<input type="radio" name="department" value="dhamra">Life Extension

First - you need to remember that a radio field will not exist in the form scope if the user doesn't select anything. You need to use isDefined or structKeyExists to ensure the user picked something. If you have, then routing the email is easy. Here is one possible way to handle it:

<cfif form.department is "overdue"> <cfset to="overdue@mysite.com"> <cfelseif form.department is "children"> <cfset to="children@mysite.com"> <cfelseif form.department is "dharma"> <cfset to="dharmainiative@mysite.com"> <cfelse> <cfset to="root@mysite.com"> </cfif>

I check for the possible values of the form field (and note I have a last ditch check in case the form value is not recognized). I set a value to a variable named to. Once I have it, I can change my cfmail tag rather easily:

<cfmail to="#to#" from="#form.email#" subject="Site Comments" wrap="80"> #form.comments# </cfmail>

You could also make the subject dynamic as well. Anyway - I hope this is helpful.