o codigo é esse
Dim msg, texto
Set msg = Server.CreateObject("CDONTS.NewMail")
texto = "<html><body>"
texto = texto & "<center>"
texto = texto & "<img src=logoAgenteAmbiental.gif>"
texto = texto & "</center>"
texto = texto & "<center>Este email está sendo enviado no formato HTML</center><p>"
texto = texto & "Você pode colocar qualquer TAG que desejar. "
texto = texto & "<a href=http://www.cohesp.com.br>LINK</a>."
texto = texto & "</body></html>"
msg.From = CStr(email)
msg.To= "deividy_r_ramires@hotmail.com"
msg.Subject = "Email em HTML"
msg.BodyFormat = 0
msg.MailFormat = 0
msg.Body = texto
msg.AttachFile Server.MapPath("logoAgenteAmbiental.gif")
msg.Send
Set msg = Nothingquero que a imagem apareça no testo em html só não aparece nada
Edição feita por: Deividy, 14/11/2003, 15:43.










