Forum Moderators: mack
Basics of Submitting and Emailing Forms with PHP [webmasterworld.com] msg 3
OK if you are on IIS there are a couple of ways you can do it. Firstly are you on your own server where you can install some custom apps or are u hosted with someone. If so they will most prob have something installed you can use.
Try this, it uses the IIS SMTP service that should be installed:
Set objNewMail = CreateObject("CDONTS.NewMail")
objNewMail.Send "you@domain.com", _
"you@domain.com", "Message Subject", _
"Stick your body copy here", 0 ' low importance
Set objNewMail = Nothing
If that doesn't work find out from your ISP if they have any software installed that you can use, if it is your own box I use AspEmail (google it) that is free and works pretty well for me