Include full url in Elmah EmailSending email in .NET through GmailGet full request url, including parameters in controllerPath.Combine for URLs?How to get ELMAH to work with ASP.NET MVC [HandleError] attribute?Getting full URL of action in ASP.NET MVCWhat to use for logging errors in a Quartz scheduled Job?How to use ELMAH to manually log errorsElmah in asp.net mvc release-mode onlyELMAH regex REMOTE_ADDR filter not workingELMAH fails to login to DB on production but not test server

Is it safe to keep the GPU on 100% utilization for a very long time?

Why doesn't increasing the temperature of something like wood or paper set them on fire?

Can the Telekinesis spell be used on yourself for the following?

Is there a list of the most-transited airports in the world?

Where do 5 or more U.S. counties meet in a single point?

Why is the episode called "The Last of the Starks"?

why it is 2>&1 and not 2>>&1 to append to a log file

I'm attempting to understand my 401k match and how much I need to contribute to maximize the match

Colorless commander using lands that chose based upon identity?

Gift for mentor after his thesis defense?

What happens when the drag force exceeds the weight of an object falling into earth?

Is it a good idea to copy a trader when investing?

Company stopped my paying salary. What are my options?

Is there an application which does HTTP PUT?

Program for finding longest run of zeros from a list of 100 random integers which are either 0 or 1

Is there an idiom that means "revealing a secret unintentionally"?

How could a civilization detect tachyons?

When an electron around an atom drops to a lower state, is 100% of the energy converted to a photon?

How can it be that ssh somename works, while nslookup somename does not?

Placing rectangle box above tikz figure?

Why doesn't Dany protect her dragons better?

Using mean length and mean weight to calculate mean BMI?

Visual Studio Code download existing code

How would an instant or sorcery with an effect that targets work with Feather?



Include full url in Elmah Email


Sending email in .NET through GmailGet full request url, including parameters in controllerPath.Combine for URLs?How to get ELMAH to work with ASP.NET MVC [HandleError] attribute?Getting full URL of action in ASP.NET MVCWhat to use for logging errors in a Quartz scheduled Job?How to use ELMAH to manually log errorsElmah in asp.net mvc release-mode onlyELMAH regex REMOTE_ADDR filter not workingELMAH fails to login to DB on production but not test server






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















Currently I get an error email from ELMAH similar to the following screenshot, which is all good.



enter image description here



But one thing that is missing is a full url something similar to what you get from a Request.Url.ToString() (ie including domain,path and query). I'd like to know if there is an easy way to include the full request url which caused the error somewhere in the email title or the beginning of the body.



Currently I've to manually piece together the url from different request headers(domain, path and query) to know the incident site.



I'm aware of different global.asax hooks elmah provide, if something can be done in any of those events, I'd like to know from where I can grab an instance of the HttpContext or something to pull additional details from and add to the email body. But if there is any existing built in configuration option to include this info, that would be a better bet I guess.










share|improve this question






























    1















    Currently I get an error email from ELMAH similar to the following screenshot, which is all good.



    enter image description here



    But one thing that is missing is a full url something similar to what you get from a Request.Url.ToString() (ie including domain,path and query). I'd like to know if there is an easy way to include the full request url which caused the error somewhere in the email title or the beginning of the body.



    Currently I've to manually piece together the url from different request headers(domain, path and query) to know the incident site.



    I'm aware of different global.asax hooks elmah provide, if something can be done in any of those events, I'd like to know from where I can grab an instance of the HttpContext or something to pull additional details from and add to the email body. But if there is any existing built in configuration option to include this info, that would be a better bet I guess.










    share|improve this question


























      1












      1








      1








      Currently I get an error email from ELMAH similar to the following screenshot, which is all good.



      enter image description here



      But one thing that is missing is a full url something similar to what you get from a Request.Url.ToString() (ie including domain,path and query). I'd like to know if there is an easy way to include the full request url which caused the error somewhere in the email title or the beginning of the body.



      Currently I've to manually piece together the url from different request headers(domain, path and query) to know the incident site.



      I'm aware of different global.asax hooks elmah provide, if something can be done in any of those events, I'd like to know from where I can grab an instance of the HttpContext or something to pull additional details from and add to the email body. But if there is any existing built in configuration option to include this info, that would be a better bet I guess.










      share|improve this question
















      Currently I get an error email from ELMAH similar to the following screenshot, which is all good.



      enter image description here



      But one thing that is missing is a full url something similar to what you get from a Request.Url.ToString() (ie including domain,path and query). I'd like to know if there is an easy way to include the full request url which caused the error somewhere in the email title or the beginning of the body.



      Currently I've to manually piece together the url from different request headers(domain, path and query) to know the incident site.



      I'm aware of different global.asax hooks elmah provide, if something can be done in any of those events, I'd like to know from where I can grab an instance of the HttpContext or something to pull additional details from and add to the email body. But if there is any existing built in configuration option to include this info, that would be a better bet I guess.







      c# asp.net-mvc elmah elmah.mvc






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 23 at 7:41









      ArunPratap

      1,99631128




      1,99631128










      asked Mar 23 at 7:03









      Mat JMat J

      3,38423147




      3,38423147






















          1 Answer
          1






          active

          oldest

          votes


















          1














          Actually it was simple. It was me ignoring the obvious. Simply add this handler in the Global.asax and you are done.



          protected void ErrorMail_Mailing(object sender, Elmah.ErrorMailEventArgs e)

          e.Mail.Body = Context.Request.Url.ToString()+ "rn" + e.Mail.Body;






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55311435%2finclude-full-url-in-elmah-email%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Actually it was simple. It was me ignoring the obvious. Simply add this handler in the Global.asax and you are done.



            protected void ErrorMail_Mailing(object sender, Elmah.ErrorMailEventArgs e)

            e.Mail.Body = Context.Request.Url.ToString()+ "rn" + e.Mail.Body;






            share|improve this answer



























              1














              Actually it was simple. It was me ignoring the obvious. Simply add this handler in the Global.asax and you are done.



              protected void ErrorMail_Mailing(object sender, Elmah.ErrorMailEventArgs e)

              e.Mail.Body = Context.Request.Url.ToString()+ "rn" + e.Mail.Body;






              share|improve this answer

























                1












                1








                1







                Actually it was simple. It was me ignoring the obvious. Simply add this handler in the Global.asax and you are done.



                protected void ErrorMail_Mailing(object sender, Elmah.ErrorMailEventArgs e)

                e.Mail.Body = Context.Request.Url.ToString()+ "rn" + e.Mail.Body;






                share|improve this answer













                Actually it was simple. It was me ignoring the obvious. Simply add this handler in the Global.asax and you are done.



                protected void ErrorMail_Mailing(object sender, Elmah.ErrorMailEventArgs e)

                e.Mail.Body = Context.Request.Url.ToString()+ "rn" + e.Mail.Body;







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 23 at 7:25









                Mat JMat J

                3,38423147




                3,38423147





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55311435%2finclude-full-url-in-elmah-email%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해