Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/06/2007, 05:51
Avatar de Maycol
Maycol
 
Fecha de Ingreso: diciembre-2001
Ubicación: Ávila (España)
Mensajes: 539
Antigüedad: 23 años, 4 meses
Puntos: 0
Re: problema enviado mails

al parecer no se puede usar CDONTS en arsys lo cambie a ASPemail y lo deje asi nose si esta bien del todo, pero me da error "Fallo en la Conexión Connection timed out."

Código:
Set Mail = Server.CreateObject("Persits.MailSender")
		Mail.host = "smtp.MIDOMINIO.com"
		
		Mail.from = "no-reply@"&replace(DomainName, "www.", "")
		Mail.addAddress Email
		Mail.Subject = CompanyName & " Newsletter Signup Confirmation."
		
		Mail.Body = Message & Signature
		On Error Resume Next
		Mail.Send
		Set Mail = Nothing
		If Err <>0 then
		   Response.Write "Fallo en la Conexión " & Err.Description
		End if

Última edición por Maycol; 15/06/2007 a las 06:05