Hi Ali,
You can edit the ASP page that has the mailing code in it(if any) and just add your email id to the TO proporty of the mail object.
If Mailing feature is not in place, you can go through this URL
NewMail Object (CDONTS Library) - You can expand the
NewMail Object (CDONTS Library) on the left-hand-side and read all the sub links there.
Eg:
Code:
Dim myMail
Set myMail = CreateObject("CDONTS.NewMail")
myMail.From = "user2@example.com"
myMail.To = "user@example.com"
myMail.Subject = "Sample Message"
myMail.Body = "This is a sample message."
myMail.AttachFile "d:\sample.txt"
myMail.Send
Set myMail = Nothing
But for this to work you should have SMTP setup on the system that runs IIS. You can check that from the services console if SMTP is already installed and running. Else, got to install.
Hope that helps.
Cheers!
_________________________
- Vijay G
Strive for Perfection