I must have misunderstood your reply because surely you can't have stumbled over this if you've already solved your original issue? Anyway, just in case...
You could hard-code the template to send its message to a particular e-mail address:
set To = "joe@example.com"
Or you can have the template ask you for the To address:
string sendingto "" "Enter the recipient's e-mail address:" 0 Address
set To = "~vsendingto~"
Or, if the template is for a reply, you could have it send to the sender of the original message.
<P>I must have misunderstood your reply because surely you can't have stumbled over this if you've already solved your original issue? Anyway, just in case...</P><P>You could hard-code the template to send its message to a particular e-mail address:</P><P> set To = "joe@example.com"</P><P>Or you can have the template ask you for the To address:</P><P> string sendingto "" "Enter the recipient's e-mail address:" 0 Address
set To = "~vsendingto~"
</P><P>Or, if the template is for a reply, you could have it send to the sender of the original message.</P>