[REBOL] Send mail with groupwise Re:(2)
> From: [EMAIL PROTECTED]
> Date: Wed, 29 Sep 1999 14:56:36 +0000
> >From what I have read of the groupwise API docs it appears to need a header
> >in the format:
Is that header in the RFC header of the message (that is directly after standard
headers and X-headers) or at the beginning of the text?
The latter would be a wiser and easier way...
In the former case you could write a 'send-groupwise word copying 'send and inserting
a line to print you header between:
insert insert message net-utils/export header-obj newline
do-send smtp-port ["DATA" message]
(check if you need newline's before or after your header))
> Anybody got any other suggestions ?
Look at
>> source send
netutils/export prints the contents of an object one word per line followed by a colon
and word value.
Look at
>> print mold net-utils/export:
Ciao,
Daniele