[REBOL] Re: rebol headers when sending mail have no "textual" user name
From: Micael::Gullmes::telenor::se at: 11-Nov-2003 13:16
Hi,
I hope this example can help:
mail_header: make system/standard/email compose [
to: "Maxim Olivier-Adlhoch"
from: [moliad--aei--ca]
reply-to: "[moliad--aei--ca]"
]
send/header [moliad--aei--ca] "Hello" mail_header
Brgds /Micael
-----Ursprungligt meddelande-----
Från: [moliad--aei--ca] [mailto:[moliad--aei--ca]]
Skickat: den 11 november 2003 12:30
Till: [rebol-list--rebol--com]
Ämne: [REBOL] rebol headers when sending mail have no "textual" user
name
hi,
something is nagging me about the way rebol builds the header when sending mail.
we can't seem to add a label to the from: mail address
here are two valid headers:
From: "Maxim Olivier-Adlhoch" <[moliad--aei--ca]>
To: <[moliad--aei--ca]>
To: [moliad--aei--ca]
From: [moliad--aei--ca]
note that the first one contains a string-based name to itself, so that all the tools
like a mailer, can properly identify the sender, by something others than a cryptic mail
address...
is there a way to construct a mail header is such a way that the name is always included
like in the first example?
thanks!
-MAx