private void SendMonthlyNotification(UserProfile user, Monthly Monthly)
        {
            var mailer = new UserMailer();

            foreach (var manager in user.RefundProfile.Freelancer.Managers)
            {
                mailer.SendMonthlyNotification(
                    manager.RefundProfile.User.ContactInfo.Email,
                    Url.Action("MonthlyDetail", "Manager", new { @id = Monthly.MonthlyID }),
                    user.PersonalInfo.ArtisticName ?? user.PersonalInfo.Name,
                    Monthly.Month.DisplayName(),
                    Server.MapPath("~/Content/images/logo-wella.png")
                    ).Send();
            }
        }