repo.or.cz
/
io
/
quag.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Making Samples executable. #!/usr/bin/env io and chmod a+x *.io
[io/quag.git]
/
addons
/
Socket
/
samples
/
EmailMessageTest.io
blob
4d1c641ed194b291c1a4f06362f442241e883c69
1
#!/
usr
/
bin
/
env io
2
3
4
m
:=
EmailMessage
clone
5
m
setFrom
(
"bar@bar.com"
)
6
m
setTo
(
"steve@dekorte.com"
)
7
m
setSubject
(
"hello"
)
8
m
setContent
(
"This is a test."
)
9
m send
10