![]() |
Admin 3/14/2019 |
There are many ways to make it work. Nobody ever asked it, I guess this is not a common setup setup. GlobalVars.globalSettings.InitAndSetArrayItem(false, "useCustomSMTPSettings");
|
D
|
DennisB author 3/14/2019 |
There are many ways to make it work. Nobody ever asked it, I guess this is not a common setup setup. SMTP settings are being set in include/appsettings.cs file GlobalVars.globalSettings.InitAndSetArrayItem(false, "useCustomSMTPSettings");
|
![]() |
Admin 3/15/2019 |
Settings written to appsettings.cs are being used. You need to understand that ASP.NET compiles sources .cs files to DLLs and this is where your code resides. .cs files are not required for deployment but come handy when you need to open project in Visual Studio and do some troubleshooting. |
D
|
DennisB author 3/15/2019 |
Settings written to appsettings.cs are being used. You need to understand that ASP.NET compiles sources .cs files to DLLs and this is where your code resides. .cs files are not required for deployment but come handy when you need to open project in Visual Studio and do some troubleshooting.
|