Forum OpenACS Q&A: Response to Passing information from a form to another adp?

send_mail { @sender@ @recipients@ @subject@ @body@ }

this is definitely bad. @vars@ are for use in adp files. in the tcl file use $var. and do not use {} here, anything within {} is not evaluated.

send_mail $sender $recipients $subject $body