1

EWS ミーティングで本文情報をハイパーリンクとして追加するにはどうすればよいですか?

// 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);

上記のコードは、予定を作成することです。Appointment.Body にはプレーン テキストがあります。ハイパーリンクにする方法。

4

1 に答える 1

2

本文に HTML フラグメントを使用してみてください。

appointment.Body = "The <a href="http://your.link">appointment</a> is with Dr. Smith.";
于 2013-04-15T23:56:12.043 に答える