Jump to content
Fórum Script Brasil
  • 0

Recuperando Dados


neo

Question

:(

Galera como posso fazer pra enviar um email atraves de um formulario e ao mesmo tempo postar os dados no banco. já sei como fazer o insert mas não estou conseguindo mandar os dados por email.

No form vai ter os seguintes campos.

Nome

Telefone

Email

Mensagem

Quando o cliente fazer o cadastro automaticamente vai receber um email de boas vindas.

O codigo que estou usando pra inserir e o seguinte.

<%
Option Explicit
Response.Expires = 0
Dim objConn, objRs, strQuery, strConnection, nome, telefone, email, mensagem
nome = Request.Form("nome")
telefone = Request.Form("telefone")
email = Request.Form("email")
mensagem = Request.Form("mensagem")
Set objConn =  Server.CreateObject("ADODB.Connection")
objConn.Open "DBQ=" & Server.MapPath("\julliano\db\contato.mdb") & ";Driver={Microsoft Access Driver (*.mdb)}","username","password"
strQuery = "INSERT INTO contato (nome,telefone,email,mensagem) VALUES ('"&nome&"','"&telefone&"','"&email&"','"&mensagem&"')"
On error Resume Next
Set ObjRs = objConn.Execute(strQuery)
objConn.close
Set objRs = Nothing
Set objConn = Nothing
if err = 0 Then
    response.redirect "sucesso.asp"
end if
%>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...