Changes between Version 3 and Version 4 of Documentation/ARexxAPI/WRITETO
- Timestamp:
- Feb 5, 2014, 5:31:16 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/ARexxAPI/WRITETO
v3 v4 1 [[TranslatedPages]]\\ 2 [[TOC(titleindex, heading=ARexx API, notitle, depth=2, Documentation/ARexx API/*)]] 3 1 [[TranslatedPages]] 2 [[TOC(sectionindex, heading=ARexx Function List, notitle, depth=1, Documentation/ARexxAPI/)]] 4 3 == WRITETO 5 4 6 '''NAME''' 5 NAME:: 7 6 WriteTo -- Enter one or more names, addresses or aliases into the "To" field of the Write window. (V2.0) 8 7 9 '''TEMPLATE''' 8 TEMPLATE:: 10 9 ADDRESS/A/M,ADD/S 11 10 12 '''FUNCTION''' 11 FUNCTION:: 13 12 Enters one or more names, addresses or aliases into the "To" field 14 13 of the Write window. YAM will resolve names and aliases looking 15 14 in the address book. 16 15 17 '''INPUTS''' 18 ADDRESS/A/M- list of names/addresses/aliases\\19 ADD/S- prevent the new data from replacing the old data already present in the "To" field\\16 INPUTS:: 17 `ADDRESS/A/M` - list of names/addresses/aliases\\ 18 `ADD/S` - prevent the new data from replacing the old data already present in the "To" field\\ 20 19 21 '''RETURNS''' 22 RCis set to 10 if no Write window was previously specified as23 "active" with [[ ARexx API/MAILWRITE| MAILWRITE]].20 RETURNS:: 21 `RC` is set to 10 if no Write window was previously specified as 22 "active" with [[MAILWRITE]]. 24 23 25 '''NOTES''' 24 NOTES:: 26 25 27 '''EXAMPLE''' 28 /* Set the primary recipients of a message */ 26 EXAMPLE:: 27 {{{#!urbiscript 28 /* Set the active Write window */ 29 MAILWRITE WINDOW 0 29 30 30 MAILWRITE WINDOW 0 /* Set the active Write window */\\ 31 'WRITETO "George Bush" "jdoe" "carol@example.com"'\\ 31 /* Set the primary recipients of a message */ 32 'WRITETO "George Bush" "jdoe" "carol@example.com"' 33 }}} 32 34 33 '''BUGS''' 35 BUGS:: 34 36 35 '''SEE ALSO''' 36 [[ ARexx API/MAILWRITE| MAILWRITE]]37 SEE ALSO:: 38 [[MAILWRITE]]