|
I am tying to modify the form_mailer.pl
I need when somebody submits the form, they will receive the auto- response in their email. My hosting company told me that I have to modify this part of the code, but I don’t know how?
sub send_mail {
# Localize variables used in this subroutine.
#
local($print_config,$key,$sort_order,$sorted_field ,$env_report);
# Open The Mail Program
open(MAIL,"
$mailprog");
print MAIL "To: $Config{'recipient'}\n";
print MAIL "From: $Config{'email'}
($Config{'realname'})\n";
Thank You
|