Пример #1
0
 public static void PrintMeetingParameters(AdxCalendarItem item)
 {
     Console.WriteLine("Present meeting parameters:");
     Console.WriteLine("Meeting subject: {0}", item.Subject);
     Console.WriteLine("Meeting Location: {0}", item.Location);
     Console.WriteLine("Meeting start date: {0}", item.StartDate.ToString("dd/MM/yyyy"));
     Console.WriteLine("Meeting end date: {0}", item.EndDate.Date.ToString("dd/MM/yyyy"));
     Console.WriteLine("Meeting start time: {0}", item.StartTime.ToString("HH:mm"));
     Console.WriteLine("Meeting end time: {0}", item.EndTime.ToString("HH:mm"));
     Console.WriteLine("Required Attendees: {0}", item.RequiredAttendees);
 }
Пример #2
0
        List <AdxCalendarItem> GetAppointmentItems(Outlook.MAPIFolder calendarFolder)
        {
            List <AdxCalendarItem> result = new List <AdxCalendarItem>();

            Outlook.Items calendarItems = calendarFolder.Items;
            try
            {
                calendarItems.IncludeRecurrences = true;
                Outlook.AppointmentItem appointment = null;
                for (int j = 1; j < calendarItems.Count + 1; j++)
                {
                    appointment = calendarItems[j] as Outlook.AppointmentItem;
                    try
                    {
                        AdxCalendarItem item = new AdxCalendarItem(
                            calendarFolder.Name,
                            appointment.Subject,
                            appointment.Location,
                            appointment.Start,
                            appointment.End,
                            appointment.Start.Date,
                            appointment.End.Date,
                            appointment.AllDayEvent,
                            appointment.Body,
                            appointment.RequiredAttendees);
                        result.Add(item);
                    }
                    finally
                    {
                        { Marshal.ReleaseComObject(appointment); }
                    }
                }
            }
            finally { Marshal.ReleaseComObject(calendarItems); }
            return(result);
        }
Пример #3
0
        static void Main(string[] args)
        {
            //MailClient.SendMail("*****@*****.**", "test", "test");
            Program.Welcome();
            OutlookReader          outlookReader = new OutlookReader();
            List <AdxCalendarItem> CalendarItems = outlookReader.GetAllCalendarItems();

            DateTime Today          = DateTime.Today;
            DateTime Now            = DateTime.Now;
            var      presentMeeting = new AdxCalendarItem();

            foreach (var ListElement in CalendarItems)
            {
                if (ListElement.StartTime < Now && ListElement.EndTime > Now && ListElement.StartDate == Today)
                {
                    presentMeeting = ListElement;
                    PrintMeetingParameters(ListElement);
                }


                //Console.WriteLine(ListElement.Recipients.ToString());
            }

            BaseClass aa = new BaseClass();

            aa.ImportFromDatabase();
            aa.CleanCatalog(aa.PathPutty);
            aa.CleanCatalog(aa.PathData);
            aa.Run();
            Console.WriteLine("Time to close the meeting");
            List <People> ktoByl = aa.CheckWhoFromRFIDIsEmployed();


            List <People> WhoShouldbe   = aa.AllRequired(presentMeeting.RequiredAttendees);
            List <People> WhoForgetCome = aa.WhoMissing(WhoShouldbe);
            List <People> WhoWas        = aa.ListUsersRFID;

            Console.WriteLine("Generated report");
            Console.WriteLine("Schould be on Meeting:");
            foreach (var item in WhoWas)
            {
                string subject     = $"Summary of meeting: {presentMeeting.Subject.ToString()}";
                string bodyPresent = "Hello " + item.Name.ToString() + "," + "\n" + "Thank You for participating in a meeting: " + presentMeeting.Subject.ToString() +
                                     " Your presence has been confirmed by UAK" + "\n" +
                                     "This mail was generated by UAK system, please not respond";
                Console.WriteLine(item.Name.ToString());
                MailClient.SendMail(item.Email.ToString(), subject, bodyPresent);
                Console.WriteLine("Report sent");
            }

            Console.Write(Environment.NewLine);
            Console.WriteLine("Was'n came on Meeting:");
            foreach (var item in WhoForgetCome)
            {
                string subject        = $"Summary of meeting: {presentMeeting.Subject.ToString()}";
                string bodyNotPresent = "Hello " + item.Name.ToString() + "," + "\n" + "You were on the list of required Attendees in a meeting: " + presentMeeting.Subject.ToString() +
                                        " but You were not there, Your unpresence has been confirmed by UAK" + "\n" +
                                        "This mail was generated by UAK system, please not respond";
                Console.WriteLine(item.Name.ToString());
                MailClient.SendMail(item.Email.ToString(), subject, bodyNotPresent);
                Console.WriteLine("Report sent");
            }

            Console.WriteLine("Press any key to exit.");
            System.Console.ReadKey();
        }