Any help would be much appreciated. Its only a little thing, but its driving me nuts. Trouble is, I'm a total newbie to coding. I've checked the code and found the following section, which is what I assume need modifying:
[quoute]Outputs the form fields to the email body.
=cut
sub send_main_email_fields {
my ($self) = @_;
foreach my $f (@{ $self->{Field_Order} }) {
my $val = (defined $self->{Form}{$f}? $self->{Form}{$f} : '');
$self->send_main_email_field($f, $val);
}
}
=item send_main_email_field ( NAME, VALUE )
[/quote]
I would be truly grateful if somebody could tel me how to modify this to stop this silly output - or recommend a nice secure FormMail script that will do the job properly.