Umm... I guess it is. Like I said, I'm extremly new at this. Here's the part that looks to me to be responsible for sending the mail itself...
Set jmail = Server.CreateObject("JMail.Message")
jmail.AddRecipient request("SentTO"), request("SentTo")
jmail.AddRecipient "
[email protected]"
'jmail.AddRecipientBCC "
[email protected]", "lastname, firstname"
jmail.From = "
[email protected]"
jmail.FromName = "Name 3"
'Obviously the above addies and names have been edited due to privacy regulations and such.'
jmail.Subject = "VIDEO CONFERENCE REQUEST"
' But as not all mailreaders are capable of showing HTML emails
' we will also add a standard text body
jmail.Body = "Too bad you can't read HTML-mail."
' As only HTML formatted emails can contain inline images
' we use HTMLBody and appendHTML
jmail.HTMLBody = "<html><body>"
jmail.appendHTML "<table border=""0"" cellpadding=""5"" cellspacing=""5"">"
For x = 1 to Request.Form.count()
jmail.appendHTML "<tr><td><b>" &Request.Form.key(x)& "</b></td><td>" &Server.HTMLEncode(Request.Form.item(x))& "</td></tr>"
Next
jmail.appendHTML "</table></body></html>"
jmail.Send("167.123.1.1")