I'm trying to send an email using SEND in Rebol 2:
send foo@bar.com "A Message"
How do I BCC a second address? I've tried the following without success:
send/header foo@bar.com "A Message" make system/standard/email [
BCC: baz@bar.com
]
This still goes to the first recipient, but not the BCC address. Is this a misunderstanding of how BCC works?
Also, using a custom header no longer copies part of the message for the subject line, but not so worried about that...