Intermec 10I2 사용자 가이드

다운로드
페이지 121
86 
EasyLAN User’s Guide
Chapter 6 — Advanced Confi guration
protected lan1 settings. See “Confi gure Printer through Fingerprint” in 
Chapter 6.
Examples:
Below is a simple example of how to send a mail in Fingerprint.
10  RUN "mail -s 'Test mail' me@domain.com 'Just  
 
 testing.' 
"
Th
  e following example shows how variables and strings can be used to 
create a mail. 
10  A% = 10
20  A$ = "Apple"
30  SUB$ = "-s "+CHR$(34)+"A% and A$ in a mail"  
 
 +CHR$(34)
40  REC$ = CHR$(34)+"me@domain.com,you@domain.com"   
 +CHR$(34)
50  SND$ = "-r me@domain.com"
60  TXT$ = CHR$(34)+"A% = "+STR$(A%)+" and A$ = "
 +A$+CHR$(34)
70  MAIL$= "mail "+SUB$+" "+SND$+" "+REC$+" "+TXT$
80 PRINT 
MAIL$
90 RUN 
MAIL$