public ActionResult Create(StudentInquiryForm form, string permalink)
        {
            var tour = _tourService.FindByPermalink(permalink);

            _mailer.SendStudentInquiry(tour, form);
            TempData ["Info"] = "We've submitted your inquiry and will be in touch shortly.";
            return(RedirectToRoute("tour-show", new { permalink }));
        }