SendStudentInterviewScheduleReminder Email

string subject = $"REMINDER: Please select a time or decline your interview ASAP"; string body = $"<p style='color: red;'>Congratulations, you have been preselected to interview with {interview.Company.CompanyName}!</p>" + $"<p>We need your response today. To accept this interview <a href='{scheduleUrl}'>click here</a> to schedule your interview time, or to decline it <a href='{declineUrl}'>click here</a>.</p>" + $"<p>Please note, if you accept an interview and there is an Informational Meeting, it will be noted below and is considered" + $" mandatory that you attend or notify the company directly of any conflicts.</p>" + $"Interview Date: {interviewDates}<br/>" + $"Interview Location: {interviewRooms}<br/>"; string endBody = "<p style='color: red'>Recommended attire for Interviews is a suit, business casual for Info Sessions.</p>" + "<p>Congratulations again and good luck!</p>" + "<p>Please contact the CM Placement Office with any questions or concerns,</p>" + "Anna Fontana<br/>(970) 491-4610<br/>Anna.Fontana@colostate.edu<br/><br/>" + "Khristy Jesse<br/>(970) 491-1060<br/>Khristy.Jesse@colostate.edu"; if (interview.Company.InformationMeeting) { string infoMeetingDatesTimes = $"Information Meeting Date and Time: {interview.Company.InformationMeetingDateTime.Value.ToLongDateString()} at {interview.Company.InformationMeetingDateTime.Value.ToShortTimeString()}<br/>" + $"Information Meeting Location: {interview.Company.InformationMeetingLocation?.Name}"; body = body + infoMeetingDatesTimes + endBody; } else { body = body + endBody; }