Example #1
0
        public void Send(IEnumerable <ErrorLog> logs, IEnumerable <string> recipients)
        {
            string body = arnold.Workout(logs);

            foreach (var recipient in recipients)
            {
                Notify(recipient, from, title, body);
            }
        }