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

[REBOL] Re: SMTP sniffer?

From: gscottjones:mchsi at: 24-Nov-2002 8:05

Hi, Patrick, From: Patrick ...
> I am just recovering from a hard disk crash. > So I had no time to test all this.
Bummer. Perhaps you did not recieve the email that shows how to get REBOL to send email to the list while preserving the name: I used the following code to send a message to the list (sanitized here to reduce spam bot harvesting): header: make system/standard/email [ From: { "My Name" <[myemail--myprovider--com]>} Subject: "Testing for pat665" Organization: "REBOL Base" ;following line *will* be replaced by listar Reply-To: [myemail--myprovider--com] X-mailer: [REBOL] MIME-Version: 1.0 Content-Type: "text/plain" ] send/header [rebol-list-email--the-rebol-name--com] "Test message" header --Scott Jones