We have been having quite a mystery here using aspmail. It works fine for me, our developer, another office pc, and our ISP provider when they test it. But most everybody else it has a problem.
WE have the successful asp object redirecting to a confirmation page which works on the pc's above but most everybody else it says 'page cannot be displayed' as if it cannot find the htm page.
Below is the code we use:
' create the mail object and set the properties
Set Mailer = Server.CreateObject("SMTPsvg.Mailer"
Mailer.FromName = "admin@nannieswhocare.com"
Mailer.FromAddress= "admin@nannieswhocare.com"
Mailer.RemoteHost = "localhost"
Mailer.AddRecipient "info@nannieswhocare.com", "info@nannieswhocare.com"
Mailer.Subject = "Data posted to form 1 of Mailer.BodyText = body
if Mailer.SendMail then
' if mail sends, redirect them
Response.Redirect("nannyconfirmation.htm"
else
'if not - display error
Response.Write "Mail send failure. Error was " & Mailer.Response
end if
Any ideas out there since we cannot duplicate the error without calling some of the users who have tried this.
WE have the successful asp object redirecting to a confirmation page which works on the pc's above but most everybody else it says 'page cannot be displayed' as if it cannot find the htm page.
Below is the code we use:
' create the mail object and set the properties
Set Mailer = Server.CreateObject("SMTPsvg.Mailer"
Mailer.FromName = "admin@nannieswhocare.com"
Mailer.FromAddress= "admin@nannieswhocare.com"
Mailer.RemoteHost = "localhost"
Mailer.AddRecipient "info@nannieswhocare.com", "info@nannieswhocare.com"
Mailer.Subject = "Data posted to form 1 of Mailer.BodyText = body
if Mailer.SendMail then
' if mail sends, redirect them
Response.Redirect("nannyconfirmation.htm"
else
'if not - display error
Response.Write "Mail send failure. Error was " & Mailer.Response
end if
Any ideas out there since we cannot duplicate the error without calling some of the users who have tried this.