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

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

From: carl:cybercraft at: 7-Aug-2004 15:44

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