async void SendEmailAfterRepairCompleted()
        {
            string currentDateString = DateTime.Now.ToString("MM/dd/yyyy");

            string[] to      = new string[] { CurrentIncident.GetProperty().GetEmail() };
            string[] cc      = new string[] { Constants.DISPATCHEREMAIL };
            string   subject = string.Format("Repair Report - {0} - {1}", CurrentIncident.GetProperty().GetTitle(), currentDateString);
            string   body    = string.Format("The incident found during a recent inspection on you property has been repaired. Photographs taken during the inspection and after the repair are attached to this email." +
                                             "<br/>" +
                                             "<br/><b>Property Name:</b> {0}" +
                                             "<br/><b>Property Address:</b> {1}" +
                                             "<br/>" +
                                             "<br/><b>Inspection Date:</b> {2}" +
                                             "<br/><b>Incident Type:</b> {3}" +
                                             "<br/><b>Room:</b> {4}" +
                                             "<br/><b>Comments from the inspector:</b><br/>{5}" +
                                             "<br/><br/><b>Incident reported:</b> {6}" +
                                             "<br/>" +
                                             "<br/><b>Repair Date:</b> {7}" +
                                             "<br/><b>Comments from repair person:</b><br/>{8}" +
                                             "<br/>" +
                                             "<br/><b>Attachments:</b>(Inspection & Repair Photos) - Email attachments are not supported at this time in Xamarin app, therefore no files are attached." +
                                             "<br/>" +
                                             "",
                                             CurrentIncident.GetProperty().GetTitle(),
                                             CurrentIncident.GetProperty().GetAddress1(),
                                             CurrentIncident.GetInspection().GetDateTime(),
                                             CurrentIncident.GetType(),
                                             CurrentIncident.GetRoom().GetTitle(),
                                             CurrentIncident.GetInspectorIncidentComments(),
                                             CurrentIncident.GetDate(),
                                             currentDateString,
                                             CurrentIncident.GetRepairComments());

            bool success = await ExchangeHelper.SendEmail(subject, to, cc, body);
        }