Quick update, for anyone interested...
I managed to answer my own question, but I'd still like to thank everyone
that replied, it did lead me to the right place. What I ended up doing was
using sendmail with the -f option. This did require me to add a new
trusted user to my sendmail.cf though.
Once that was done, I just used popen to dump the message to
sendmail. Here's the ugly/incomplete version of the code. If you can't
figure it out, or want to see the exacts let me know off list, and I'll
send it to ya in the morning (read, give me time to clean it up).
$mailer = "/usr/sbin/sendmail -t -i [EMAIL PROTECTED]";
$fd = popen($mailer, "w");
fputs($fd, "$headers");
fputs($fd, "$message");
pclose($fd);
--
Robert Hough ([EMAIL PROTECTED])
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]