public void Execute()
        {
            //System.Diagnostics.Debugger.Launch();
            var bagellers = new BagellerService().FetchAll();
            var emailList = string.Join(",", bagellers.Select(x => x.Email));
            //emailList = "*****@*****.**";
            var nextBageller = bagellers.First();

            var subject = "This Week's Bageller is: " + nextBageller.Name;
            var body = new StringBuilder();
            body.Append("<h1>Upcoming Bagellers:</h1>");
            body.Append("<table border=\"0\">");
            foreach (var bageller in bagellers.Skip(1))
            {
                body.Append("<tr><th style='text-align:left;'>{0}</th><td>{1}</td></tr>"
                                    .FormatWith(bageller.NextPurchaseDate.ToShortDateString(), bageller.Name));
            }
            body.Append("</table>");
            EmailUtil.SendHtmlEmail(emailList, null, "Bagel Club <*****@*****.**>", subject, body.ToString());
        }