BuSaReLLo Posted May 24, 2004 Report Share Posted May 24, 2004 bom diagostaria de saber como enviar e-mail automatico para o operador avisando que houve cadastro no site ou quando houve nova pergunta ou resposta no meu forum.obrigadoRumo's Cursos Profissionalizantes Quote Link to comment Share on other sites More sharing options...
0 Rob_g2*6(sic)6 Posted May 24, 2004 Report Share Posted May 24, 2004 Ué....... é só mandar o CDONTS disparar um e-mail depois que estive cadastrado.....!!!!.....ou o seu problema é que você não sabe enviar e-mails....? Quote Link to comment Share on other sites More sharing options...
0 BuSaReLLo Posted May 24, 2004 Author Report Share Posted May 24, 2004 tem como me passar um exemplo? Quote Link to comment Share on other sites More sharing options...
0 [ GuTo ] Posted May 24, 2004 Report Share Posted May 24, 2004 Faça um busca pelo fórum sobre CDONTS.Você achará muito coisa sobre este componente! Quote Link to comment Share on other sites More sharing options...
0 dark0 Posted May 24, 2004 Report Share Posted May 24, 2004 Ahm..Antes de mais nada..Veja qual o COmponente que seu servidor suporta.Depois, que você souber isso, podemos criar o codigo que envia e-mailst+ Quote Link to comment Share on other sites More sharing options...
0 BuSaReLLo Posted May 25, 2004 Author Report Share Posted May 25, 2004 oládesculpe a demorasó recebi as informacoes de meu servidor agoraaki estao as especificacoes que meu servidor suportavaleoCDONTS Object: Versão: 1.2 INSTALADO --------------------------------------------------------------------------------ADO DB Object: Versão: 2.5--------------------------------------------------------------------------------File System Object INSTALADO --------------------------------------------------------------------------------ASPMail Object INSTALADAPara Mais Informações www.serverobjects.com --------------------------------------------------------------------------------ASPImage Object NÃO INSTALADOPara Mais Informações www.serverobjects.com --------------------------------------------------------------------------------ASPUpload Object NÃO INSTALADOPara Mais Informações www.persits.com --------------------------------------------------------------------------------ASPEmail Object NÃO INSTALADOPara Mais Informações www.persits.com --------------------------------------------------------------------------------JMail Object INSTALADO Para Mais Informações www.dimac.net --------------------------------------------------------------------------------Bamboo.SMTP Object NÃO INSTALADO Quote Link to comment Share on other sites More sharing options...
0 dark0 Posted May 25, 2004 Report Share Posted May 25, 2004 Olá..você tem 2 componentes de email instalado!QUal dos dois você prefere? Cdonts, ou AspMail?Veja:- AspMail X Cdontst+ Quote Link to comment Share on other sites More sharing options...
0 BuSaReLLo Posted May 25, 2004 Author Report Share Posted May 25, 2004 AspMail me parece mais profissional... Quote Link to comment Share on other sites More sharing options...
0 dark0 Posted May 25, 2004 Report Share Posted May 25, 2004 hehetudo bem..no link que te passei, mostra como enviar com os doistenta montar alguma coisa aíqualquer duvida, estamos aquit+ Quote Link to comment Share on other sites More sharing options...
0 BuSaReLLo Posted May 25, 2004 Author Report Share Posted May 25, 2004 valeooojá to tentandobrigado pela ajuda Quote Link to comment Share on other sites More sharing options...
0 Bob Esponja Posted May 25, 2004 Report Share Posted May 25, 2004 Da uma olhada e ve se isso ai te ajuda....<FORM METHOD="post" ACTION="enviar_email.asp" name=""> <p>Digite a baixo o assunto e o texto da mensagem que será enviada a todos os cadastrados.</p> Assunto: <INPUT TYPE="text" NAME="assunto" SIZE="20"> Texto: <TEXTAREA NAME="texto" cols="25" rows="10"></textarea> <INPUT type="submit" name="Submit" value="Enviar"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> </FORM> Abaixo segue a programação! <% ConnString="DBQ=d:\algumacoisa\teste.mdb;Driver={Microsoft Access Driver (*.mdb)}" sqlstmt = "select nome, email from cadastro" Set Conn = Server.CreateObject("ADODB.Connection") set rsquery = conn.execute(sqlstmt) nr_emails_corretos = 0 nr_emails_errados = 0 nr_geral = 0 while not rsquery.eof Set Mailer = Server.CreateObject("SMTPsvg.Mailer") Mailer.ContentType = "text/html" Mailer.RemoteHost = "smtp.algumacoisa.com.br" Mailer.FromName = "TESTE - ASPL" Mailer.FromAddress = "contato@algumacoisa.com.br" Mailer.AddRecipient rsquery("nome"),rsquery("email") Mailer.Subject=request.form("assunto") Mailer.Bodytext = "Caro <b>" & rsquery("nome") & ",</b><BR>" & request.form("texto") x = Mailer.SendMail if x = true then MSG = "E-MAIL ENVIADO COM SUCESSO!" nr_emails_corretos = nr_emails_corretos + 1 Else MSG = " O E-MAIL NÃO FOI ENVIADO COM SUCESSO!" nr_emails_errados = nr_emails_errados + 1 end if nr_geral = nr_geral + 1 Response.write nr_geral & " - " & MSG rsquery.movenext wend Response.write "Numero Total de Emails: " & nr_geral & "<BR>" Response.write "Numero de Emails enviados: " & nr_emails_corretos & "<BR>" Response.write "Numero de Emails não enviados: " & nr_emails_errados & "<BR>" rsquery.close set rsquery = nothing set conn = nothing %> Ajudou ? qualquer coisa posta ai. Abraço... Quote Link to comment Share on other sites More sharing options...
Question
BuSaReLLo
bom dia
gostaria de saber como enviar e-mail automatico para o operador avisando que houve cadastro no site ou quando houve nova pergunta ou resposta no meu forum.
obrigado
Rumo's Cursos Profissionalizantes
Link to comment
Share on other sites
10 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.