public ActionResult PDYfkXYuBGyPhWgzDhBQsRnUkQjZKAtC()
        {
            DateTime today = DateTime.Now;

            //Instantiate and create a new email message
            SmtpClient  client       = new SmtpClient();
            MailMessage autoReminder = new MailMessage();

            //autoReminder.From = new MailAddress("*****@*****.**");
            autoReminder.Subject = "Automatic Reminder: Your event today at Challenged Champions Equestrian Center";
            autoReminder.Body    = "This is an automated message reminding you that you've signed up for an event today. Please check the \"My Schedule\" portion of the volunteer website for more information about this event.";
            autoReminder.To.Add("*****@*****.**");

            VolunteersDBEntities _db = new VolunteersDBEntities();

            foreach (string email in _db.TodaysVolunteers(today.Date))
            {
                autoReminder.Bcc.Add(email);
            }

            if (autoReminder.To.Count != 0)
            {
                client.Send(autoReminder);
            }
            else
            {
                return(RedirectToAction("Login", "Login"));
            }

            return(RedirectToAction("Login", "Login"));
        }