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