> Hello REBOLS!
> 
> 
> I just walked into a problem with 'send.
> 
> If I e.g.
> 
> >    send [EMAIL PROTECTED] "The Subject^/The Body"
> 
> I always get an email looking like this
> 
> >    ...
> >    subject: The Subject
> >    ----------------------------
> >    The Subject
> >
> >    The Body
> 
> Why does REBOL repeat the subject line in the message's body?
> Does anyone know?
> Do I necessarily have to supply my own custom header with 'send/header ?

Yes.

> Or is this the result of simple misconfiguration? 

No.
;-)

To be more verbose:
I vote for adding next function for sending a mail:

sendmail email

where email is like system/standard/email

email: make object! [
    To: none
    CC: none
    BCC: none
    From: none
    Reply-To: none
    Date: none
    Subject: none
    Return-Path: none
    Organization: none
    Message-Id: none
    Comment: none
    X-REBOL: {2.2.0.4.2 "The Internet Messaging Language (TM) WWW.REBOL.COM"}
    MIME-Version: none
    Content-Type: none
    Content: none
]               

this function should send mail as it is, i.e.
get the addressees automatically from To, CC and BCC fields.
and make from Content field the body of the mail.

I don't know how to send mail from REBOL now with two email addresses in
To field.

Regards,
jan

--
Jan Strejcek
[EMAIL PROTECTED]

Reply via email to