Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3223400
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T16:06:10+00:00 2026-05-17T16:06:10+00:00

I want a certain action request to trigger a set of e-mail notifications. The

  • 0

I want a certain action request to trigger a set of e-mail notifications. The user does something, and it sends the emails. However I do not want the user to wait for page response until the system generates and sends the e-mails. Should I use multithreading for this? Will this even work in ASP.NET MVC? I want the user to get a page response back and the system just finish sending the e-mails at it’s own pace. Not even sure if this is possible or what the code would look like. (PS: Please don’t offer me an alternative solution for sending e-mails, don’t have time for that kind of reconfiguration.)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T16:06:11+00:00Added an answer on May 17, 2026 at 4:06 pm

    SmtpClient.SendAsync is probably a better bet than manual threading, though multi-threading will work fine with the usual caveats.

    http://msdn.microsoft.com/en-us/library/x5x13z6h.aspx

    As other people have pointed out, success/failure cannot be indicated deterministically when the page returns before the send is actually complete.

    A couple of observations when using asynchronous operations:

    1) They will come back to bite you in some way or another. It’s a risk versus benefit discussion. I like the SendAsync() method I proposed because it means forms can return instantly even if the email server takes a few seconds to respond. However, because it doesn’t throw an exception, you can have a broken form and not even know it.

    Of course unit testing should address this initially, but what if the production configuration file gets changed to point to a broken mail server? You won’t know it, you won’t see it in your logs, you only discover it when someone asks you why you never responded to the form they filled out. I speak from experience on this one. There are ways around this, but in practicality, async is always more work to test, debug, and maintain.

    2) Threading in ASP.Net works in some situations if you understand the ThreadPool, app domain refreshes, locking, etc. I find that it is most useful for executing several operations at once to increase performance where the end result is deterministic, i.e. the application waits for all threads to complete. This way, you gain the performance benefits while still having a clear indication of results.

    3) Threading/Async operations do not increase performance, only perceived performance. There may be some edge cases where that is not true (such as processor optimizations), but it’s a good rule of thumb. Improperly used, threading can hurt performance or introduce instability.

    The better scenario is out of process execution. For enterprise applications, I often move things out of the ASP.Net thread pool and into an execution service.

    See this SO thread: Designing an asynchronous task library for ASP.NET

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I render a show action on certain conditions? def show @post =
I just created an action filter that I want to apply to nearly all
As my application initializes, I want to create a registry of any MVC action
I'm wondering if this is a good idea or not, either way I'd like
I want to use my iPhone to very easily create a timestamp whenever a
Since working with Exchange Web Services 2010 is a bit ridiculous, especially from anything
I have a Struts2 (2.1.8.1) web application. My web.xml looks like, <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
I'm writing a Facebook Iframe canvas application using the Facebook Toolkit . There is
I'm trying to do some testing and it requires the Windows system to be
Suppose I am processing a large amount of incoming data from multiple threads. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.