PaRsH
PaRsH

Reputation: 1320

How to add hyperlink in meeting body using EWS to c#?

How i can add the body information as a hyperlink in EWS meeting?

// Create the appointment.
Appointment appointment = new Appointment(service);

// Set properties on the appointment.
appointment.Subject = "Dentist Appointment";
appointment.Body = "The appointment is with Dr. Smith.";
appointment.Start = new DateTime(2009, 3, 1, 9, 0, 0);
appointment.End = appointment.Start.AddHours(2);

// Save the appointment.
appointment.Save(SendInvitationsMode.SendToNone);

Above code is to create appointment. Appointment.Body is having a plain text. How i can make it as a hyperlink.

Upvotes: 1

Views: 1185

Answers (1)

Brian Kelly
Brian Kelly

Reputation: 19305

Try using an HTML fragment for the body:

appointment.Body = "The <a href="http://your.link">appointment</a> is with Dr. Smith.";

Upvotes: 2

Related Questions