public ActionResult applyToRemoveBeneficiary(string reason, int x = 0)
 {
     if (!String.IsNullOrEmpty(Session["benefIDNum"].ToString()))
     {
         ProfileBusiness pb = new ProfileBusiness();
         ViewBag.Feedback = pb.applyToRemoveBen(HttpContext.User.Identity.Name, Session["benefIDNum"].ToString(), reason);
         var EB = new EmailBusiness();
         EB.to   = new MailAddress(pb.getContactDetails(HttpContext.User.Identity.Name).emailAdress);
         EB.sub  = "Application Recieved - Mpiti Funeral Undertakers";
         EB.body = "This is to confirm that your application for uncovering one beneficiary was recieved for our kind consideration."
                   + "<br/>Look forward to recieve a report in 3 to 5 working days.. "
                   + "<br/><br/> Regards<br/><b>Mpiti Funeral Undertakers - Communications Team</b>";
         EB.Notification();
         return(RedirectToAction("Feedback", new { message = ViewBag.Feedback }));
     }
     ViewBag.Feedback = "Please select a beneficiary to remove by navigating to Benefiaries under your Profile";
     return(View());
 }