I'm trying to send an email using SEND in Rebol 2:
send [email protected] "A Message"
How do I BCC a second address? I've tried the following without success:
send/header [email protected] "A Message" make system/standard/email [
BCC: [email protected]
]
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...