A longer cludgy way would be to put the <cfoutput> before the <cfmail>

Like this:

<cfoutput>

<cfif #isdefined(form.firstname)#>
<cfset #firstname# = #form.firstname#
<cfelse>
<cfset #firstname# = "Not Entered">
</cfif>
<!--- repeat for all form entries (gah!)--->
</cfoutput>


<cfmail>
#firstname#
</cfmail>


But as far as I know, the only form type that will not pass is a checkbox
because it doesnt have a value for not-checked. 
A radio will work fine in place of check boxes, you just have to add that
no, and make the no checked.
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to