I have a section in the root area of our .NET MVC website called Email so we have:
/Views/Email/<all the views>
/Controllers/EmailController
I now want to make this section available within another area called Administration. This would include using the EmailController in the root area rather than creating a new one in the Administration Area.
What is the cleanest/best way to do this?