I have a live MVC application running on production server. Whenever a user registers on the site, the MVC application sends an email to the registered user.
Now, the SMTP server has been changed to a new IP address. And the old SMTP IP address is hard coded in one of the DLLs used by the application. The application it is not reading SMTP address from web.config file.
I do not have the source code to recompile the code with new SMTP address. The problem is that the registered user never gets the confirmation email.
Is there anyway I can change the IP address used in the DLL?
Or is there anyway I can intercept the email sent to the old SMTP address and then resend the same email to new SMTP server.
Please suggest any possible solutions.