So doing it this way when the recipients get the email it will say just "[EMAIL PROTECTED]" in the From field in their email client. Is there a way to have it show "Joe User" in the From on their client then when they hit reply it would go to the right person that sent it? Would adding in a "Reply-To" field work? Something like this..
See RFC 822.
Your own posting shows the answer:
From: Christopher Benson <[EMAIL PROTECTED]>
In Perl -
$from = "From: $first $last <$e-mail>";
With regard to:
Would adding in a "Reply-To" field work? Something like this.
Some MUA and even a few MTA ignore the Reply-To. RFCs are guidelines that should be followed but sometimes developers didnt read the RFCs in the first place.
Cheers! -Sx-
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>