Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.