コード例 #1
0
        public static async void Send(PlaystationGame discountedGame, AppUser user)
        {
            string emailText = ProcessEmail(discountedGame);

            var apiKey  = Environment.GetEnvironmentVariable("SENDGRID_API_KEY");
            var client  = new SendGridClient(apiKey);
            var from    = new EmailAddress("*****@*****.**", "Playstation Wishlist");
            var subject = "PSN game on sale! - Playstation Wishlist";
            var to      = new EmailAddress(user.Email, user.Name.Split(" ")[0]);
            //var htmlContent = $"The game <strong>{discountedGame.Name}</strong> is on sale for <strong>{discountedGame.Currency}{discountedGame.FinalPrice}</strong>. <br />Check it out: {discountedGame.Url}";
            var msg = MailHelper.CreateSingleEmail(from, to, subject, string.Empty, emailText);
            await client.SendEmailAsync(msg);
        }
コード例 #2
0
        public void CreatePlaystationGame(PlaystationGameCreateModel playstaionGameToCreate)
        {
            var entity = new PlaystationGame()
            {
                PlaystationGameId = playstaionGameToCreate.PlaystationGameId,
                Title             = playstaionGameToCreate.Title,
                Rating            = playstaionGameToCreate.Rating,
                MaturityRating    = playstaionGameToCreate.MaturityRating,
                Price             = playstaionGameToCreate.Price,
            };

            using (ApplicationDbContext context = new ApplicationDbContext())
            {
                context.PlaystationGames.Add(entity);
                context.SaveChanges();
            }
        }
コード例 #3
0
        private static string ProcessEmail(PlaystationGame discountedGame)
        {
            var assembly     = Assembly.GetExecutingAssembly();
            var resourceName = "PlaystationWishlist.EmailSender.email.html";

            using (Stream stream = assembly.GetManifestResourceStream(resourceName))
                using (StreamReader reader = new StreamReader(stream))
                {
                    string emailText = reader.ReadToEnd()
                                       .Replace("{{discountedGameName}}", discountedGame.Name)
                                       .Replace("{{discountedGameCurrency}}", discountedGame.Currency)
                                       .Replace("{{discountedGameFinalPrice}}", discountedGame.FinalPrice.ToString())
                                       .Replace("{{discountedGameImageUrl}}", discountedGame.GameImageUrl)
                                       .Replace("{{discountedGameUrl}}", discountedGame.Url);

                    return(emailText);
                }
        }