Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fs.makeDir('/CCMail')
- function input(prompt)
- print(prompt)
- entered = io.read()
- term.clear()
- term.setCursorPos(1,1)
- return textutils.urlEncode(entered)
- end
- from = input('Who are you?')
- file = fs.open('/CCMail/'..from, 'w')
- print(http.post('http://shoalnet.org:4567/', 'from='..from..'&to='..input('Who are you sending a message to?')..'&message='..input('What would you like to say?')).readAll())
- file.write(http.post('http://shoalnet.org:4567/', 'from='..from..'&to=checkmail&message=').readAll())
- file.close()
Advertisement
Add Comment
Please, Sign In to add comment