sparkie624 wrote:I am going to have to dig deeper into what account is actually being used.
If you're using Windows Server 2k3 or newer, try:
echo `whoami`;
for other Windows variants, try:
echo `echo %USERNAME%`;
sparkie624 wrote:I had assumed since the server is running under the administrator account and having the drive pathed that it would use the same account where permissions are available.
The server doesn't "run" under any account - it just runs. You might log onto the server as an administrator, but that's just your logon session. Background services have their own set of credentials that they're configured to run as (this can be found in the Services MMC under Administrative Tools... or by typing "services.msc" into the Run box).
sparkie624 wrote:I will have to find what user name that the PHP is using so that I can setup the account on the mail server.
You could also configure the web service to run as a network domain account, rather than a local account.
One last thing... I know I've said this many times, but I just want to be sure. If you do a phpinfo(), what are the values for 'display_errors' and 'error_reporting' ?