PDA

View Full Version : What to use to post forms by email on WIN2k3!


Joe
2003-08-19, 18:35 PM
I saw that you can't use Cdont's with Server 2003. I used to post formail to Blat on my old accounts (which were shared hosting elsewhere). What do others use? What is somewhat easy to configure. I have alot of sites that I am migrating over during the next few days that will all need to post forms.
Thanks!!!

Ron
2003-08-19, 20:41 PM
If you do not want to alter your code to comply with CDOSYS than
you can simply add the CDONTS file to your win2k3 server and
just register the dll:
http://www.microsoft.com/technet/prodtechnol/windowsserver2003/proddocs/deployguide/iisdg_dep_tnoc.asp

rharmon
2003-08-20, 11:40 AM
Im using the latest version of Blat on mine and its working quite well.

These are the Blat lines I use in formmail.pl:

$mailprog = 'c:\\Blat\\blat.exe';
..
..
..
open(MAIL,"|$mailprog - -s \"$CONFIG{'subject'}\" -t $CONFIG{'recipient'} -from $CONFIG{'email'} -replyto $CONFIG{'email'} -q\n\n");

wunderlin
2003-08-20, 15:13 PM
I had a lot of legacy code written in aspmail which was free once upon a time, but I broke down and purchased the latest- still reasonably priced.

http://www.serverobjects.com/products.htm#aspmail

Monsoonstorm
2003-08-20, 15:28 PM
Originally posted by Joe
I saw that you can't use Cdont's with Server 2003. I used to post formail to Blat on my old accounts (which were shared hosting elsewhere). What do others use? What is somewhat easy to configure. I have alot of sites that I am migrating over during the next few days that will all need to post forms.
Thanks!!!

Where did you see that? I use it fine.

charlie
2003-08-20, 16:15 PM
You probably want to check out the System.Web.Mail. It's a basically a wrapper to CDONTS.

If you want to only do basic stuff and want a free component, try...
FreeSMTP (http://www.quiksoftcorp.com/freesmtp/)

Shane
2003-08-22, 08:45 AM
Originally posted by Monsoonstorm
Where did you see that? I use it fine.

CDO replaced CDONTS on Windows Server 2003.
http://www.ilopia.com/Windows2003/Tutorials.aspx?id=3

Monsoonstorm
2003-08-22, 10:15 AM
Shane,

By golly, You are correct. I must have had it installed. I am using CDONTS for my ASP scripts and it works perfect. I have a Windows 2003 machine. In order to use it, you need to use IIS SMTP and if you are using a mail program like MailEnable, then you can use IIS SMTP on a different port. I migrated all my Sites from Windows 2000 server. Many of them use CDONTS for mail. More info Here: http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/windowsserver2003/proddocs/deployguide/iisdg_dep_tnoc.asp -already posted...DOH!