[REBOL] send/header command fails
From: ben:brannen:gmai:l at: 19-Aug-2009 16:06
I've been trying to incorporate some email into a program I've written
that checks web-sites.
header: system/standard/email
header/To: ben.brannen-xxxxxxxx.com
send/header header/to "message" header ;;works
if I set:
header/Subject: "any change here or" ;; fails
header/From: "[any change here or]" ;; fails
header/Content: "any change here" ;; fails
--have not tried changing other lines yet
fails with:
** User Error: ESMTP: Invalid command
** Near: insert smtp-port reduce [from reduce [addr] tmp]
using sdk 2.7.6 rebolcmdview
-ben