Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/10/2004, 17:18
Avatar de AJVEvoluzione
AJVEvoluzione
 
Fecha de Ingreso: agosto-2004
Ubicación: Buenos Aires
Mensajes: 195
Antigüedad: 20 años, 8 meses
Puntos: 1
Exclamación Como enviar imagen don hipervinculo en E-mail CDONTS

Hola! el tema es asi tengo que enviar una mail a la direccion que me ingresend e un formulario, en el cual va una imagen con jipervinculo no se como hacerlo me da error cad vez que lo intento
Saludos!

Código:
sub envio_mail

Dim mailx

mailx= Request.Form("textfield1")

Dim ObjMail
Set ObjMail = Server.CreateObject("CDONTS.NewMail")
ObjMail.To = mailx
ObjMail.From = "- EGRESADOS -<[email protected]"
ObjMail.Subject = "Calendario Eventos"
body = "------- Calendario Eventos -------"    
body = body & vbCrLf & "Hola! para ver el calendario hace click: "  
body = body & vbCrLf & "-"
body = body & vbCrLf & <p align='center'><a href='http://www.miweb.com/eventosmail/2004.htm'><img src='http://www.miweb.com./aqui.gif' width='150' height='23'></a></p>&
body = body & vbCrLf & "-"
body = body & vbCrLf & "Mandame el dato de tu fiesta a [email protected]"

ObjMail.Body = body

ObjMail.Send
Set ObjMail = Nothing
Response.Redirect "http://www.miweb.com/ok.htm"

end sub 'envio_mail