Boaddrink php formail script v1.07.2 has a feature that the email that comes from the form in the website does not appear to come from the sender but it appears to come from an email address of webmaster's choice. While it may be a way deal with spam, it is a problem when you instantly want to know from whom has the form come from. After spending some time breaking my head I could modify the file formmail.php and now it is fine.
Look for these two lines in the original formmail.php file:
$mail_header .= 'From: ' . FROM . $mail_newline;
$mail_header .= 'Reply-to: ';
The above two lines are below the line containing the word FROM. This FROM is the third FROM when you search the file using search function of the editor.
Now, make this small modification:
$mail_header .= 'Reply-to: ' . FROM . $mail_newline;
$mail_header .= 'From: ';
Look for these two lines in the original formmail.php file:
$mail_header .= 'From: ' . FROM . $mail_newline;
$mail_header .= 'Reply-to: ';
The above two lines are below the line containing the word FROM. This FROM is the third FROM when you search the file using search function of the editor.
Now, make this small modification:
$mail_header .= 'Reply-to: ' . FROM . $mail_newline;
$mail_header .= 'From: ';