I am using MvcMailer with Orchard CMS in a module I created, and although I can get it to send e-mails, the body of the e-mail is empty, leaving me to believe that Orchard is not picking up "/[Module]/Views/[NameOfMailerFolder/_Layout.cshtml" or ".../[NameofMailerView].cshtml".
At first I thought that moving "/[Module]/Views/[NameOfMailerFolder]" either to the "/[ThemeBeingUsed]/Views" folder or to the "/Views" folder of Orchard.Web might work (I thought it was just not finding the paths). But no luck.
I tried playing around with route.cs in my module, but I don't know whether or not I can just leave CONTROLLER and ACTION empty ("") and put the "/[Module]/Views/[NameOfMailerFolder]" in there only. In any event, I created a route for "[NameOfMailerView].cshtml" but that hasn't worked either. I am wondering if this is even the right way to go (I did not set up actions in a controller, but am thinking to do so - just going to have to redirect?).
I'm a bit lost, so I appreciate any guidance.