[REBOL] [testing headers 2/4]
From: rebol665:ifrance at: 26-Nov-2002 10:45
Hi list,
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]
reply-to: "pat665 <[rebol665--ifrance--com]>"
subject: "[testing headers 2/4]"
]
contents: copy {
Hi list,
I am trying different options to send emails.
Using Ladislav recursive method, so you can check the code.
Patrick
}
append contents "code: "
append contents mold code
send/header [rebol-list--rebol--com] contents header
]