
douge
Deleted
May 4, 2000, 6:11 AM
Post #1 of 2
(213 views)
|
|
Can't SendMail on NT
|
Can't Post
|
|
I am using the following code to send mail using the SendMail module: _________________________ #!c:/perl/bin/perl.exe require "subparseform.lib"; &Parse_Form; print "Content-type:text/html\n\n"; open (MAIL, "|c:/perl/lib/SendMail -t") | | print MAIL "To: dougj\@mtlfab.com \nFrom: dougj\@mtlfab.com \n"; print MAIL "Subject: A Test \n"; print MAIL "This is the message content \n"; close(MAIL); __________________________ When the script is ran a black screen flashes over the browser window and then this error: "The name specified is not recognized as an internal or external command, operable program or batch file." Any help you could give me on this would be greatly appreciated. Doug
|