I am trying to write an application that will allow the user to subscribe to multiple Listserv lists. I want them to fill out a form that when submitted will automatically open their mail client with the subscribe commands in the body of the e-mail. I can construct the mailto on submittal of the form
<A HREF="mailto:[EMAIL PROTECTED]?body=#mybody#">Link text</A> but I don't know how to spawn the client on execution of the template. And the second problem I have it getting "mybody" have line breaks, as I need each subscribe command on a separate line. I tried: <cfset mybody="Subscribe myfirstlist [EMAIL PROTECTED] #chr(13)##chr(10)# Subscribe mynextlist [EMAIL PROTECTED] "> and a few other variations with no luck. Any help would be appreciated. Michael Sosnow

