[REBOL] Re: sending e-mail as another user

2007-05-10 Thread Brian Tiffin
Hi John %blast.r is for sending %letter.txt to a csv list of addresses and names in %names.txt. The edits to %blast.r just modifies some of the header fields, not the account. If you've got it all set up %blast.r uses the SEND command from the account REBOL is running from. SET-NET accepts

[REBOL] Re: sending e-mail as another user

2007-05-10 Thread John Blake
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.

[REBOL] Re: sending e-mail as another user

2007-05-10 Thread Tom
row: parse/all line | row/1 row/2 ... row/:n John Blake wrote: 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

[REBOL] Re: sending e-mail as another user

2007-05-09 Thread Anton Rolls
Hi John, Just a quick suggestion; did you try tracing the network activity: trace/net on Regards, Anton. I'm trying to create a script to send e-mail notifications as a different user from our exchange server. The script I did to read e-mails works fine using pop. The meaty