예제 #1
0
        private static string GetEmailBody(out bool postsMade)
        {
            DateTime start = DateTime.Now.AddDays(-1).Date;
            DateTime end   = start.AddDays(1);

            string result        = "<span style='font-size:x-large;'>Discussion Recap For " + start.ToLongDateDisplay() + ".</span><br><br>";
            int    numberOfPosts = 0;

            foreach (HomeAppsLib.db.NFL_forum post in LibCommon.DBModel().NFL_forums.Where(x => x.insert_dt >= start && x.insert_dt < end).OrderBy(x => x.insert_dt))
            {
                numberOfPosts++;

                result += HomeAppsLib.EmailSubscriptions.GenerateDiscPostEmailBodyText(post);

                result += "<br><br>";
            }
            if (numberOfPosts == 0)
            {
                result += "There are no discussions to report.<br><br>";
            }

            postsMade = numberOfPosts > 0;

            result += "<a href='" + LibCommon.WebsiteUrlRoot() + "'>Click here to log in and view all discussions.</a><br><br>";
            result += "Thanks,<br>The Wright Picks";

            result += "<br><br><br><span style='font-size:small;'>P.S. If you'd like to unsubscribe from this email, click <a href='" + EmailSubscriptions.LinkToUnsubscripe("XXXXXXXXXX", (int)EmailSubscriptionType.DailyForumRecap) + "'>here.</a></span>";

            return(result);
        }
예제 #2
0
        private static void LogRun(string type, string desc)
        {
            var data = LibCommon.DBModel();

            HomeAppsLib.db.log log = new HomeAppsLib.db.log();
            log.type        = type;
            log.description = desc;
            log.LogDate     = DateTime.Now;
            data.logs.InsertOnSubmit(log);
            data.SubmitChanges();
        }
예제 #3
0
        public static int SendPicksReminders()
        {
            DateTime aFewDaysOut        = DateTime.Now.AddDays(1).ToEndOfDay();
            var      weeksAboutToExpire = LibCommon.DBModel().NFL_weeks.Where(x => x.exp_dt > DateTime.Now && x.exp_dt < aFewDaysOut && x.week > 0);

            int count = 0;

            foreach (var weekAboutToExpire in weeksAboutToExpire)
            {
                count += SendRemindersForWeek(weekAboutToExpire);
            }

            return(count);
        }
예제 #4
0
        private static int SendReminderEmails(HomeAppsLib.db.NFL_week weekAboutToExpire, EmailSubscriptionType emailSubscriptionType)
        {
            int count = 0;

            foreach (var user in EmailSubscriptions.GetSubscribedUsers(emailSubscriptionType))
            {
                if (LibCommon.DBModel().NFL_userPicks.Count(x => x.week == weekAboutToExpire.week && x.username == user.name) == 0)
                {
                    string to = LibCommon.IsDevelopmentEnvironment() ? "*****@*****.**" : user.email;

                    int daysLeft = (weekAboutToExpire.exp_dt.Date - DateTime.Now.Date).Days;

                    string subject = "Only " + daysLeft + " days left to make your picks!";
                    if (daysLeft == 1)
                    {
                        subject = subject.Replace("days", "day");
                    }
                    if (daysLeft == 0)
                    {
                        subject = "Picks expire today!";
                    }

                    //if (DateTime.Now < new DateTime(2016, 9, 10))
                    //    subject = "FEATURING CORY QUICK PICKS!! " + subject;

                    string body = "Hi, " + user.name + "!<br><br>";
                    body += "Remember, picks for <b>" + weekAboutToExpire.text + "</b> will expire on " + weekAboutToExpire.exp_dt.ToLongDateTimeDisplay() + "!<br><br>";
                    body += "<span style='font-size:x-large;'>Be sure to make your picks before then!</span><br>";
                    body += "<br><a href='" + LibCommon.WebsiteUrlRoot() + "nflpicks.aspx?quickpicks=true&autoweek=" + weekAboutToExpire.week + "&sso=" + LibCommon.SSOUserKey(user) + "' style='font-size:xx-large;'>CLICK HERE FOR NEW CORY QUICK PICKS!</span><br><br>";
                    body += "<span style='font-size:large;'><a href='" + LibCommon.WebsiteUrlRoot() + "'>Click here to log in and make your picks now</a></span><br><br>";
                    body += "Thanks,<br>The Wright Picks";
                    body += "<br><br><br><span style='font-size:small;'>P.S. If you'd like to unsubscribe from this email, click <a href='" + EmailSubscriptions.LinkToUnsubscripe(user, (int)emailSubscriptionType) + "'>here.</a></span>";

                    LibCommon.SendEmail(to, subject, body, "The Wright Picks", waitAfter: TimeSpan.FromSeconds(15));

                    if (user.name.ToLower() == "cory")
                    {
                        HomeAppsLib.LibCommon.SendCoryText(weekAboutToExpire.week);
                    }

                    count++;
                }
            }

            return(count);
        }