here is the code that I am using
<%
dim name, company, email, phone, fax, address, comment, other
'dim name, title, company, address, city, state, zip, areacode
'dim phone, fax, email,
how_they_heard, i_see
'dim comments
action = request("action"
if action = "send" then
name = request("name"

company = request("company"

email = request("email"

phone = request("phone"

fax = request("fax"

address = request("address"

comment = request("comment"

other = request("other"
recipient = "mwebb@uliad.com"
subject = "REQUEST FORM"
from = request("name"

fromem = request("email"
body = "Name: " & name & chr(10)
body = body & "Company: " & company & chr(10)
body = body & "email: " & email & chr(10)
body = body & "Phone: " & phone & chr(10)
body = body & "Fax: " & fax & chr(10)
body = body & "URL: " & address & chr(10)
body = body & "Comment: " & comment & chr(10)
body = body & "Other: " & other & chr(10)
SendMail recipient, body, subject, from, fromem
confirmsg = "<font face=verdana,arial,helvetica color=A0522D size=2> Thank you.</font>"
end if
sub SendMail(sRecipient, sBody, sSubject, sFrom, sFromem)
'on error resume next
Dim oEmail
Dim i
set oEmail = Server.CreateObject("SMTPsvg.Mailer"
oEmail.RemoteHost = "mail.uliad.com"
oEmail.FromAddress = sFromem
oEmail.Subject = sSubject
oEmail.AddRecipient sRecipient, sRecipient
oEmail.BodyText = sBody
oEmail.SendMail
response.write oEmail.Response
set oEmail = nothing
end sub
%>