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.