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

[REBOL] cgi question

From: kpeters::mvinc::net at: 5-May-2004 22:46

Hi all, (REBOL on FreeBSD and Linux) I can send mail to the two obscured email addresses in the script below from REBOL command w/o any problems. The send/header below however always fails. Anything obvious this newbie might be doing wrong? How can I test what exactly the problem is if not obvious to you gurus? Thanks as always for all help!! Kai REBOL [] response: "test" recipient1: [kpeters--xxx--net] recipient2: [kpeters--xxx--com] header: make system/standard/email [ To: [ recipient1 ] From: [ [web--xxx--com] ] Subject: "subject" Organization: "organization" ] either error? try [ send/header reduce[ recipient1 recipient2 ] response header] [ web-response: { NOT ok! } write/append %errorlog.txt response ] [ web-response: { ok } ] print web-response