I am using a script to parse through info sent in from a web form. The
information is parsed
and creates two text files. One is used for a flat text history file and
the other flat text file is used to import into
our archaic email system cc:Mail...yuck!!. Everything works! The only
problem I have is using
the system command "system ( )" in the program. The script will create the
text files but will not run the
system called out batch job which will import the text file into cc:Mail
when initializing it from the web page.
When I go to the command prompt and run perl and call for the script the
system command works. Any ideas!!! I am running Perl V.5.6.1
For Win32
Here is a snippet of the code I am having trouble with!!
system('sendmail.bat');
print "Location: $path_to_response \n\n";
Thanks,
Dave