Hi Koie,

think this is a bug in attach.r ... or maybe in the Rebol send command ...

if you change the line in attach .r

    send/header header/to mesg header
to
    send/header copy header/to mesg header

you will get your "to" address.

Cheers Phil


-- original message --

i also for some reason cannot get the from field to show up in outlook
express when i send myself email.. it always is blank or says none. can
anyone tell me why this might be happening?

Koie Smith


----- Original Message -----
From: "mechtn" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, October 12, 2001 9:16 AM
Subject: [REBOL] Email Attachments


>
> Hey, This is Koie again working on this email attachments. I have finally
figured it out and am making progress with learning how to send email and
such. My question is i want the program to prompt me on what file name to
attach and then it send.. currently my program looks like...
>
> rebol
>  [
>    Title:   "Emailer that sends attachments"
>    Author:  "Koie Smith"
>    Date:    5-Oct-2001
>    File:    %koie.r
>    Purpose: {
>         A simple script, which uses the e-mail capabilities
>         along with attach.r to send attachments.
>     }
>   ]
> system/user/email: [EMAIL PROTECTED]
> system/schemes/default/host: "mail.networktel.net"
> do %attach.r
> if (mesg: ask "Please Enter Message: ") = "" [mesg: "(None)"]
> lv-header: make system/standard/email
> [
>     Subject: "New Order"
>     to: [EMAIL PROTECTED]
>     from: [EMAIL PROTECTED]
>     date: to-idate now
>     Content-Type: {text/plain; charset="iso-8859-1"}
> ]
> lv-att: [%test.doc]
> mail mesg lv-header lv-att
>
>
>
> Thanks Guys for the help!
> Koie Smith
>
> --
> To unsubscribe from this list, please send an email to
> [EMAIL PROTECTED] with "unsubscribe" in the
> subject, without the quotes.
>

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.


-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to