public ActionResult CreateComment(ViewPostViewModel inModel)
        {
            var post = _ctx.Post.Where(m => m.Id == inModel.Id).SingleOrDefault();
            var images = _ctx.Image.Where(i => i.Post.Id == post.Id).AsEnumerable();
            var user = _ctx.UserProfiles.Where(u => u.UserId == post.User.UserId).SingleOrDefault();
            var recipient = post.User;
            var recipientEmail = recipient.Email;
            var comments = _ctx.Comment.Where(c => c.PostId == post.Id).ToList<Comment>();

            //TODO
            //if (!ModelState.IsValid)
            //{
            //    return View(inModel);
            //}

            var comment = new Comment();

            comment.Recipient = recipient.UserName;
            comment.Author = HttpContext.User.Identity.Name;
            comment.Subject = inModel.Subject;
            comment.Body = inModel.Body;
            comment.EntryDate = DateTime.Now;
            comment.LandLord = post.LandLord;
            comment.PostId = post.Id;

            _repository.AddComment(comment);

            try
            {
                var bemail = new MailMessage(recipientEmail, user.Email, "Someone commented on your Tenant's Village post", comment.Author + " commented on your post for " + comment.LandLord + "." +
                    System.Environment.NewLine + "Here is " + comment.Author + "'s comment:  "  +  inModel.Body);
                var smtpServer = new SmtpClient();
                smtpServer.Send(bemail);

            }
            catch (Exception e)
            {
                ModelState.AddModelError("", "There was an error sending your message");
                return View("Error");
            }

            var outModel = new ViewPostViewModel
            {
                Id = post.Id,
                Title = post.Title,
                LandLord = post.LandLord,
                LLemail = post.LLemail,
                Post = post.Post,
                Rent = post.Rent,
                Deposit = post.Deposit,
                AmtKept = post.AmountKept,
                LeaseYear = post.LeaseYear,
                Images = images,
                User = user,
                Comments = comments

            };

            return RedirectToAction("ViewPost", "Search", outModel);
        }
        public Comment AddComment(Comment messageToAdd)
        {
            _ctx.Comment.Add(messageToAdd);

            var errors = _ctx.GetValidationErrors();

            _ctx.SaveChanges();

            return messageToAdd;
        }