in reply to Removing Headers in Perl
you should do some regex and remove the previous forward headers.If you could post the headers you currently receive in the mail I can suggest some Regex.But mind this:even after removing the previous headers, you cannot completely get rid of the mail header because the lines$formContents = param('formField');
by themselves become a header.print MAIL "To: $toEmail\n"; print MAIL "From: $fromEmail\n"; print MAIL "Subject: $formSubject\n";
|
|---|