I need a function to create a hyperlink in a appointmentItem.Body. For mailItem it works fine. I need a similiar one for the appointmentItem. I didn't found any usefull hints.
if (ThisAddIn.mailItem != null) {
ThisAddIn.mailItem.HTMLBody += "<a href='"+link+"'>Click here to call.</a>";
}else if(ThisAddIn.appointmentItem != null){
ThisAddIn.appointmentItem.Body += link;
}
Thanks for your help