Proper way to asynchronously send an email in ASP.NET… (am i doing it right?)

前端 未结 9 1610
时光取名叫无心
时光取名叫无心 2020-12-23 10:57

When a user registers on my website, I don\'t see why I need to make him \"wait\" for the smtp to go through so that he gets an activation email.

I decided I want to

9条回答
  •  生来不讨喜
    2020-12-23 11:02

    There was a lot of good advice that I upvoted here... such as making sure to remember to use IDisposable (i totally didn't know). I also realized how important it is to manually catch errors when in another thread since there is no context -- I have been working on a theory that I should just let ELMAH handle everything. Also, further exploration made me realize I was forgetting to use IDisposable on mailmessage, too.

    In response to Richard, although I see that the threading solution can work (as suggested in my first example) as long as i'm catching the errors... there's still something scary about the fact that IIS completely explodes if that error isn't caught. That tells me that ASP.NET/IIS never meant for you to do that... which is why i'm leaning towards continuing to use .BeginInvoke/delegates instead since that doesn't mess up IIS when something goes wrong and seems to be more popular in ASP.NET.

    In response to ASawyer, I was totally surprised that there was a .SendAsync built into the SMTP client. I played with that solution for a while, but it doesn't seem to do the trick for me. Although I can skip through the client of code that does SendAsync, the page still "waits" until the SendCompleted event is done. My goal was to have the user and the page move forward while the email is getting sent in the background. I have a feeling that I might still be doing something wrong... so if someone comes by this they might want to try it themselves.

    Here's my full solution for how I sent emails 100% asynchronously in addition with ELMAH.MVC error logging. I decided to go with an expanded version of example 2:

    public void SendThat(MailMessage message)
    {
        AsyncMethodCaller caller = new AsyncMethodCaller(SendMailInSeperateThread);
        AsyncCallback callbackHandler = new AsyncCallback(AsyncCallback);
        caller.BeginInvoke(message, callbackHandler, null);
    }
    
    private delegate void AsyncMethodCaller(MailMessage message);
    
    private void SendMailInSeperateThread(MailMessage message)
    {
        try
        {
            SmtpClient client = new SmtpClient();
            client.Timeout = 20000; // 20 second timeout... why more?
            client.Send(message);
            client.Dispose();
            message.Dispose();
    
            // If you have a flag checking to see if an email was sent, set it here
            // Pass more parameters in the delegate if you need to...
        }
        catch (Exception e)
        {
             // This is very necessary to catch errors since we are in
             // a different context & thread
             Elmah.ErrorLog.GetDefault(null).Log(new Error(e));
        }
    }
    
    private void AsyncCallback(IAsyncResult ar)
    {
        try
        {
            AsyncResult result = (AsyncResult)ar;
            AsyncMethodCaller caller = (AsyncMethodCaller)result.AsyncDelegate;
            caller.EndInvoke(ar);
        }
        catch (Exception e)
        {
            Elmah.ErrorLog.GetDefault(null).Log(new Error(e));
            Elmah.ErrorLog.GetDefault(null).Log(new Error(new Exception("Emailer - This hacky asynccallback thing is puking, serves you right.")));
        }
    }
    

提交回复
热议问题