|
Hi,
hope this will be helpful....
ASPEmail : set objMail = Server.CreateObject("Persits.MailSender")
you may setup an error check point
----------ASPemail check error code ---------- ------------- check err --------------- strErr = "" bSuccess = False On Error Resume Next ' catch errors
If Err <> 0 Then ' error occurred strErr = Err.Description
------ go to other website page ------ response.redirect("error_message_page.htm")
-------- or -------- response.write " no, email not sent out " response.write "<br>Error occurred: <br>"&strErr
------- or do nothing ---------
else bSuccess = True
---- go to other website page ------ response.redirect("sucess_message_page.htm")
-------- or -------- response.write " yes, email sent out "
End If ....
source and more details from : http://3w.ezer.com/asp/email/persits.mailsender.asp
Link.Ezer.com free add URL or exchange links and search::Add Your Link - No Link Back Needed , or Automated link exchange free links, free add URL
|