Script Library: 1238 scripts
 

mailcc.r

REBOL [ Title: "Email Send With CC" Date: 10-Sep-1999 File: %mailcc.r Purpose: { Example of how to include CC addresses on an email header. } library: [ level: 'intermediate platform: none type: none domain: [email other-net] tested-under: none support: none license: none see-also: none ] ] to: %luke--rebol--com cc: [%fredrika--nab--dom %dominica--ban--dom] header: make system/standard/email compose [ from: (system/user/email) to: (to) cc: (reduce [cc]) subject: "Test message." ] message: { Hang loose. Just testing a script example. -Mendo } send/header/only join cc to message header
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.
  • (dominica:ban:dom)
  • (fredrika:nab:dom)
  • (luke:rebol:com)