John W. Krahn wrote:
Or upgrade to RFC 2822. :-)
As well as some related RFCs
RFC 821 (SMTP protocol)
RFC 1123 (Host requirements)
RFC 1652 (8bit-MIME transport)
RFC 1869 (SMTP service extensions)
RFC 1870 (Message Size Declaration)
RFC 1985 (ETRN command)
RFC
Wc -Sx- Jones wrote:
>
> Christopher Benson wrote:
>
> > 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
Christopher Benson wrote:
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
Christopher Benson wrote:
I'm wondering if there is a way where you can show the person's REAL
name rather than just an email ID when sending an email from Perl. So
here's a snip of what I have now...
my $from_addr = "[EMAIL PROTECTED]";
open (MAIL, "|/usr/lib/sendmail -t");
print MAIL
I'm wondering if there is a way where you can show the person's REAL name
rather than just an email ID when sending an email from Perl. So here's a
snip of what I have now...
my $from_addr = "[EMAIL PROTECTED]";
open (MAIL, "|/usr/lib/sendmail -t");
print MAIL "To: $to_addr\n",