home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat 1994 November
/
macformat-018.iso
/
Utility Spectacular
/
Script
/
GTQLib1.2.as folder
/
Sample Scripts
/
MailWithProp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-05-03
|
275 b
|
15 lines
|
[
TEXT/ToyS
]
property gotAddress : false
property theAddress : 0
on send(m)
get user
if not gotAddress then
set theAddress to choose address
set gotAddress to true
end if
mail to theAddress message m
end send
on run
send("Hello there. This is the text of the letter.")
end run