<% idioma = request.form("idioma") nome = request.form("nome") email = request.form("email") telefone = request.form("telefone") bolsa = request.form("bolsa") bodyhtml = bodyhtml & "
" bodyhtml = bodyhtml & "" bodyhtml = bodyhtml & "" bodyhtml = bodyhtml & "" bodyhtml = bodyhtml & "" bodyhtml = bodyhtml & "" bodyhtml = bodyhtml & "
Formulario em : " & idioma & "
Nome:"& nome & "
Email:"& email & "
Telefone:"& telefone & "
Bolsa(s) escolhida(s):"& bolsa & "
" '=========================================================== 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") %>