in reply to Re^2: Sending Mail
in thread Sending Mail

Why try to pass between the two languages? Why not set up a mailing form and mail script in either Perl or PHP?

Replies are listed 'Best First'.
Re^4: Sending Mail
by sandy1028 (Sexton) on Aug 16, 2007 at 10:44 UTC
    hi, mail() is not working in php so need to send from perl. The script of mail is working in perl but I am not able to pass the variables from php to perl. If i use <form action="test.pl" method="post"> The contents of test.pl is displayed not just the varibles. Should I include any module to receive the data
      If the contents of test.pl is shown and not the output, that's a configuration problem of the webserver.

      You should check if the script has executing permissions, and that CGI scripts are allowed by your server config.

      If the script runs, use CGI - the documentation is quite good.