Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to send a bunch of emails, and the obvious way to format them is to render a partial view and send that. The problem is that I'd like to do this in the background, so it isn't immediately obvious how to get access to the methods I need.

Since the job is kicked off by a controller, one thing I was thinking of was something like this:

public ActionResult SendEmails(){
  Task.Factory.StartNew(() => DoSendEmails(
      // pass in a formatting closure that has access to the 
      // controller's context
      delegate(EmailData) {
           return RenderPartialToString("view", EmailData);
      }
  ));
}

Will this work? Is there a better way?

share|improve this question

3 Answers

up vote 1 down vote accepted

I would hyper strongly recommend you MvcMailer (note the Send Email Asynchronously section). You may also checkout Scott Hanslemann's blog post about it.

share|improve this answer

Another option to consider is Postal. You can find a tutorial here to get started, or watch this video from MvcConf. You can send emails asynchronously using the Email.SendAsync() method.

share|improve this answer

I wrote a project called ActionMailer.Net that allows you to generate emails from your MVC views. Give it a spin and let me know if you like it. I also wrote up some documentation and a nice screencast for the project. Cheers! :)

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.