Пример #1
0
        public IActionResult RemoveMember(User userToRemove)
        {
            userToRemove = usersDAL.GetUser(userToRemove.Id);

            if (authProvider.IsLoggedIn)
            {
                User currentUser = authProvider.GetCurrentUser();

                if (currentUser.FamilyRole == "Leader" && currentUser.FamilyId == userToRemove.FamilyId)
                {
                    RemoveFromFamilyEmail email = new RemoveFromFamilyEmail()
                    {
                        User   = userToRemove,
                        Leader = currentUser,
                        Family = familyDAL.GetFamily(currentUser.FamilyId)
                    };

                    if (usersDAL.RemoveFromFamily(userToRemove))
                    {
                        emailProvider.RemoveFromFamily(email);
                    }
                }

                return(RedirectToAction("Index", "Family"));
            }
            else
            {
                return(RedirectToAction("Login", "Account"));
            }
        }
Пример #2
0
        public bool RemoveFromFamily(RemoveFromFamilyEmail model)
        {
            bool output = false;

            try
            {
                to = new MailboxAddress(model.User.DisplayName, model.User.Email);
                message.To.Add(to);

                message.Subject = $"{model.Leader.DisplayName} has removed you from the {model.Family.Name} family.";

                body.HtmlBody = $"<h1>Hi {model.User.DisplayName}!</h1><p>We just wanted to let you know that {model.Leader.DisplayName} has removed you from the {model.Family.Name} Family.</p><p>All of the recipes that you have added are still saved to your account but they have been removed from the {model.Family.Name} Family recipe book.</p><br><p>- The Let's Eat Team</p>";
                message.Body  = body.ToMessageBody();

                output = Connect() && Send() ? true : false;
            }
            catch
            {
                output = false;
            }

            return(output);
        }