[Help] Persits.MailSender.4 error

Hi There,

please could someone help me, I don’t know much about asp and so one, and I’m trying to make a mailform, I did, but it is showing an error, that I don’t have an ideia how fix it:

Persits.MailSender.4 error ‘800a0005’

Software caused connect abort.

/english/contact.asp, line 58

here is the url where you can try:

[URL=“http://www.pereira-adv.com/english/contact.asp”]http://www.pereira-adv.com/english/contact.asp

and here is the line 58:

	Set objMail = Server.CreateObject("Persits.MailSender")
	objMail.Host = "mail.xxx.com"
	objMail.From = Request("txtEmail")
	objMail.AddAddress "xxx@xxx.com"
	objMail.AddReplyTo Request("txtEmail")
	objMail.Subject = "Contato via Web"
	objMail.IsHTML = True
	objMail.Body = strTexto
	objMail.Send
	Set objMail = Nothing

Thanks in advanced!