Forum Moderators: phranque
Up until recently I was using a UNIX web server which had sendmail installed. When I wanted to submit data through and email I referenced sendmail in a Perl application and wham-o.
But now I am on a Windows server with ASP scripts. I know this has to be fairly simple, but how do I go about doing the same thing on a different platform?
Any help would be greatly appreciated!
Thanks!
"webbunny"
I looked on the site recommended by macrost and I'm told that CDONTS is not supported on XP because it was replaced by CDOSYS. Lucky me, my development environment is on XP.
I am still very confused on how to go about setting this up. Is this an application that I need to go pay for and then install? Or is it more like IIS, and I go to the Control Panels and Add Components?
Help!
Thanks,
webbunny
If you have direct internet connection you could run a Win32 SMTP server on the box. Check out this free one:
(It's from the developers of the Pegasus mail client - I hope that's allowed, sticky me if it gets zapped)
And then in your ASP script, prize open an IP socket connection to localhost on port 25 and send your message using raw SMTP commands. There's plenty of SMTP reference sites on the web - it is pretty straight forward.
Hope this helps!