You should be able to include someones name along with their e-mail address in the "To" field of the e-mail. Something like this should work fine:[VBS]objMail.To="""" & Request.Form("name") & """ <" & Request.Form("email") & ">"[/VBS]If the passed variables were "someone" for name and "someone@someone.com" for the email, the "To" field would look like this:
To: "Someone" <someone@someone.com>
Bookmarks