Hi John,
>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?
You shouldn't put a space before the /attach. ie, this should work...
send/subject/attach address message {subj} [files]
Note you can use any order for the refinements, just make sure the order of their
arguments matches the refinement order. ie, this should work too...
send/attach/subject address message [files] {subj}
Hope that helps.
-- Carl Read
--
To unsubscribe from the list, just send an email to rebol-request
at rebol.com with unsubscribe as the subject.