This is why it wasnt working.
 Although I was using;
 Send/header [to: to-addr] contents header
 And could print out the contents of [to: to-addr], it didn't send any
email. It was logging in but not sending anything.=20
I used this to test to verify connectivity and sending permissions.
http://support.microsoft.com/kb/153119
So, once I knew the account could send, it had to be the script.

 I changed it to;
 Send/header to-addr contents header
 And it works.
Now I just need it to parse pipe delimited args and I'll be ready to go.


 Thanks for the help.

 John

-----Original Message-----
From: rebol-bounce@rebol.com [mailto:[EMAIL PROTECTED] On Behalf
Of John Blake
Sent: Thursday, May 10, 2007 2:58 AM
To: [EMAIL PROTECTED]
Subject: [REBOL] sending e-mail as another user



headers on an email are like pictures on a postcard.


rebol[]
set-net [ [EMAIL PROTECTED]
 mailhost.arsenaldigital.com   mailhost.arsenaldigital.com   none none
none]

body: {

headers on an email are like pictures on a postcard.

}
=20
header: make system/standard/email [
To:     {"John Blake" <[EMAIL PROTECTED]>}
From:   {"John Blake" <[EMAIL PROTECTED]>}
Subject: "[REBOL] sending e-mail as another user"=20
]
=20
send/header to-email [EMAIL PROTECTED] body header     =20


--=20
To unsubscribe from the list, just send an email to=20
lists at rebol.com with unsubscribe as the subject.


-- 
To unsubscribe from the list, just send an email to 
lists at rebol.com with unsubscribe as the subject.

Reply via email to