I know from that subject you're probably thinking "what the hell". But let me explain!

I have two projects: MyMVCWebsite - An MVC Website running on windows azure MyWebsiteWorker - A separate DLL project running on a separate windows azure worker role. This references MyMVCWebsite as a DLL as it uses some of its code.

I have a controller called Email and the actions are the different types of emails we send, for example /Email/DailyNewsletter(model: userDetails)

The controller exposes a method RenderPartialViewAsString which would allow me to render /Email/DailyNewsletter/userDetails into a string, which i could then send in the HtmlBody of the email.

This is all fine and dandy, if I want to send these emails from the webserver, but I don't.

I want to be able to render the partial view from MyWebsiteWorker using something like:

For each user in usersToEmail
  Dim _con as new EmailController
  SendEmail(user.emailAddress, _con.RenderPartialViewAsString(user))
next

Obviously this doesn't work (you can't even create a new instance of EmailController)

I want to do it this way because there could be 1000's of emails to send, and I don't want that load putting on the web server.

link|improve this question
feedback

1 Answer

Why build the email sending into the website in the first place? Just make it part of the external app. If you want to use Razor views for your email template then install something like FluentEmail to do this. It installs it's own version of the Razor engine to do view rendering. I don't see why it wouldn't work in a non-web project.

http://lukencode.com/2010/04/11/fluent-email-in-net/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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