[REBOL] Re: send&email insanity
From: lmecir:mbox:vol:cz at: 7-Mar-2003 9:31
Hi all and myself,
please replace "receiver" by "recipient" in my previous mail and excuse my bad english.
Scott, after the fix, even the:
if none? header-obj/to [
header-obj/to: tmp: make string! 20
if show [
foreach email address [repend tmp [email ", "]]
clear back back tail tmp
]
]
can be changed to:
if all [show none? header-obj/to] [
header-obj/to: tmp: make string! 20
foreach email address [repend tmp [email ", "]]
clear back back tail tmp
]
Regards
-L