[REBOL] Re: sending e-mail as another user
From: jblake::arsenaldigital::com at: 10-May-2007 16:49
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.
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