home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Source Code
/
AppleScript
/
Additions
/
GTQ Library 1.2
/
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