AllendeL4S
Perch
Hi friends..
I had a website created in IIS and was able to send emails out with no problems using ASPEmail. Due to other reasons I had to create this domain in PLESK and delete the older one.
After this I'm getting this error when sending the email:
The code I'm using is as follow:
The "Line 813" is the: "Mail.Send"
Any help is appreciated
I had a website created in IIS and was able to send emails out with no problems using ASPEmail. Due to other reasons I had to create this domain in PLESK and delete the older one.
After this I'm getting this error when sending the email:
Code:
Persits.MailSender.4 error '800a0006'
550 Requested action not taken: mailbox unavailable or not local
/contractprocessor.asp, line 813
The code I'm using is as follow:
Code:
strHost = "localhost"
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = strHost
Mail.From = "[email protected]"
Mail.FromName = "My Domain Name"
Mail.AddAddress "[email protected]", "My Domain Name"
Mail.AddAttachment Server.MapPath(strFileName)
Mail.Subject = "New Contract"
Mail.Body = "New contract attached."
Mail.Send
The "Line 813" is the: "Mail.Send"
Any help is appreciated