From:
PSA102
...
The Rebol Dictionary says that the send command has these two =
refinements among others:

 /attach
 /subject

With these refinements, what would the format of the send command be? =
Would it be

  send/subject /attach address message {subj} [files]

When I try this command I get an error that "attach" is not a valid =
refinement. Is this so?=20

John Wirt

*****************
Hi, John,

Try:

  send/subject/attach address message {subj} [files]

You were very close.  Notice that the second slash refinement =
immediately follows the first refinement (no space).  This is a general =
principle in REBOL that refinements are all together.  While it may look =
more like just a path, in this case it is not.  Then the objects for the =
refinements follow in order following any parameter required by the =
command.

-Scott Jones
-- 
To unsubscribe from the list, just send an email to rebol-request
at rebol.com with unsubscribe as the subject.

Reply via email to