Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Email object and send

From: ingo:h-o-h at: 26-Feb-2003 8:15

Hi Charles, Charles <[chalz--earthlink--net]> schrieb am 26.02.2003, 06:35:45: <...>
> I want to do something like this: > announce: make system/standard/email [ > From: {"Me" } > To: [[who--where]] > Reply-To: [myself--myaddress--com] > Subject: "Subject line" > ] > send/header announce/to "message" announce
Normally Rebol does not support sending of real names, but there is a patch available at: http://www.h-o-h.org/patches.r After this, you can do something like: announce: make system/standard/email [ From: ["Me" [me--here--com]] To: ["Who" [who--where]] Reply-To: [myself--myaddress--com] Subject: "Subject line" ] send/header announce/to "message" announce The patch is a little bit older, and I have not yet incorporated changes in newer versions, but it should work with no problems. Kind regards, Ingo