I've made a custom class as below so that I can ONLY send emails when my App is in Live mode. Problem is, My web.config can't resolve the class, can anyone see what I'm doing wrong? Assembly of whole project is MusingMonkey. I've tried a lot of permutations i.e disregarding App_Start e.t.c
Thanks
namespace MusingMonkey.App_Start
{
public class CustomErrorMailModule : ErrorMailModule
{
protected override void SendMail(MailMessage mail)
{
if (GlobalHelper.IsLiveMode)
{
base.SendMail(mail);
}
}
}
}
web.config:
<httpModules>
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
<!-- <add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" /> -->
<add name="ErrorMail" type="App_Start.CustomErrorMailModule, MusingMonkey" />
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" />
</httpModules>
<modules runAllManagedModulesForAllRequests="true">
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" preCondition="managedHandler" />
<!-- <add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" preCondition="managedHandler" /> -->
<add name="ErrorMail" type="App_Start.CustomErrorMailModule, MusingMonkey" preCondition="managedHandler" />
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" preCondition="managedHandler" />
</modules>