[REBOL] Re: [testing headers]
From: lmecir:mbox:vol:cz at: 26-Nov-2002 9:30
Hi Pat,
> I am trying different options to send emails.
> Using Ladislav recursive method, so you can check the code.
>
> Patrick
> code: [
> header: make system/standard/email [
> to: "rebol list <[rebol-list--rebol--com]>"
> from: [rebol665--ifrance--com]
You could have tried to write: from: {pat665 <[rebol665--ifrance--com]>}, IMO.
> reply-to: "pat665 <[rebol665--ifrance--com]>"
> subject: "[testing headers]"
> ]
> contents: {
> Hi list,
>
> I am trying different options to send emails.
> Using Ladislav recursive method, so you can check the code.
>
> Patrick
> code: }
> append contents "code: "
You copied my bug/error here. The "append" line isn't necessary, (it
actually messes" the things - self modifying "feature"). The "code: }" part
can be in the Contents string, or we can use a suitable COPY like
contents: copy {...
> append contents mold code
> send/header [rebol-list--rebol--com] contents header
> ]
Cheers
-L