Script Library: 1238 scripts
 

emailsend.r

REBOL [ Title: "Send Email with Buttons" Date: 20-May-2000 File: %emailsend.r Purpose: { A very simple email sending application that shows how text is input and buttons are used. } library: [ level: 'beginner platform: none type: none domain: [GUI email] tested-under: none support: none license: none see-also: none ] ] view layout [ backdrop 30.40.100 effect [grid 10x10] origin 40x20 h2 white "Send REBOL Email:" msg: field "Type a message here..." 210x50 text white "Send to:" across return button "Docs" [send %docs--rebol--com msg/text] button "Carl" [send %carl--rebol--com msg/text] return button "Webmaster" [send %webmaster--rebol--com msg/text] button "Cancel" [quit] ]
halt ;; to terminate script if DO'ne from webpage
Notes
  • email address(es) have been munged to protect them from spam harvesters. If you are a Library member, you can log on and view this script without the munging.
  • (webmaster:rebol:com)
  • (carl:rebol:com)
  • (docs:rebol:com)