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

[REBOL] Re: Questions about the 'send' function

From: Gary:Jones:usap:gov at: 7-Aug-2004 15:40

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? 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