%
idioma = request.form("idioma")
nome = request.form("nome")
email = request.form("email")
telefone = request.form("telefone")
bolsa = request.form("bolsa")
bodyhtml = bodyhtml & "
"
bodyhtml = bodyhtml & "| Formulario em : | " & idioma & " | "
bodyhtml = bodyhtml & "| Nome: | "& nome & " | "
bodyhtml = bodyhtml & "| Email: | "& email & " | "
bodyhtml = bodyhtml & "| Telefone: | "& telefone & " | "
bodyhtml = bodyhtml & "| Bolsa(s) escolhida(s): | "& bolsa & " | "
bodyhtml = bodyhtml & " |
"
'===========================================================
set objmail = server.createobject("CDONTS.newmail")
objmail.to = "gabriela@pontogbrazil.com"
objmail.subject = assunto
objmail.from = firstname & " <" & email & ">"
objmail.Importance = 1
objmail.Body = bodyhtml
objmail.MailFormat = 0 ' html
objmail.BodyFormat = 0
objmail.send
set objmail = nothing
'===========================================================
response.redirect("formulario-resposta01.htm")
%>