I have an application that is written in VBA inside of Microsoft Access 2003. We have a form that allows the users to send an automated email message to the development team that uses the following code:
DoCmd.SendObject acSendNoObject, , , _
"[email protected]", "", "", _
"Helpdesk Submission", msg, False, ""
This code was working perfectly for all of our users until we gave the application to one of the systems administrators who had IIS Admin Tools installed on his computer. The application simply refused to send a message from the user and would fail silently.
It took us a while to figure out that the problem was IIS Admin Tools, but once we did, Internet Searches turned up nothing of value. This is basically a shot in the dark, hoping someone has an idea of a solution.