Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] What should we bake? Re:(5)

From: news:ted:husted at: 23-Sep-2000 15:21

On 9/23/2000 at 12:30 PM [siegel--prodigy--net--mx] wrote:
> I've been trying to put together a system to send out press releases
using free Perl/CGI scripts as a prototype. What a hairball! Here's a script I use to manage a small mailing list. --- #!\usr\bin\rebol REBOL[ Title: "ATW Script Mailing List (atwscripts.r)" ] ; - Load mailing list atwscripts: make block! load %atwscripts.txt ; - Setup Internet mail set-net [ [webmaster--wxxi--org] fc.wxxi.org ] ; - Setup Header atwheader: make system/standard/email [ From: "Assignment: the World <[thusted--wxxi--org]>" Subject: "ATW Script for this week" Organization: "Assignment the World - WXXI Online" ] ; - Send it send/header atwscripts read %atwscript.txt atwheader quit --- What I'm sending out is saved in a plain-text file - "atwscript.txt", and the list of recipients is another plain-text file - atwscripts.txt - just a list of [whomever--whereever--com's]. At one time I used the bulk mail refinement, but AOL bounced to many messages that way. -Ted.