13 Ways Power Apps Simplifies eDiscovery
E-Discovery is a crucial process for legal research enabling lawyers to find the digital evidence they need. It involves finding, collecting, and filtering e-data related to their...
Listening is fun too.
Straighten your back and cherish with coffee - PLAY !
Summarize this article with:

In Outlook, Add-ins are programs that help us to automate certain tasks according to our ease like when we view or create messages.
i.e., Trello, Skype, Zoom, Evernote, etc.
When we are talking about Outlook add-in, we must know the basics of the following objects:
We can create an Add-in either by using Yeoman Generator or Visual Studio. The Yeoman Generator creates a Node.js application that is managed with code editors like Visual Studio Code, Atom, Sublime Text, etc.
Here we will learn how to make an add-in using Visual Studio step by step.
First, we have to install Visual Studio with the Office development workload or SharePoint development workload installed.
Now, Open the Visual Studio Menu bar and follow the below steps:
File -> New -> Project
In the project list, select Outlook Web Add-in which is situated under the Visual C# or VB (Visual Basic) under the expanded Office/SharePoint submenu.
Name the project and finish the setup.
Visual Studio will create a solution and its two projects will appear in Solution Explorer. The file MessageRead.html will open in Visual Studio.
After completion of the setup wizard, we will be able to see the Solution of that project created by Visual Studio that contains two projects:
Now, we will update the code:
'use strict';
(function () {
Office.onReady(function () {
// Office is ready
$(document).ready(function () {
// The document is ready
loadItemProps(Office.context.mailbox.item);
});
});
function loadItemProps(item) {
// Write message property values to the task pane
$('#item-id').text(item.itemId);
$('#item-subject').text(item.subject);
$('#item-internetMessageId').text(item.internetMessageId);
$('#item-from').html(item.from.displayName + " <" + item.from.emailAddress + ">");
}
})();
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
td.prop-val {
word-break: break-all;
}
.content-main {
margin: 10px;
}
element with the following code snippet:
| Property | Value |
|---|---|
| Id | |
| Subject | |
| Message Id | |
| From |
Next, we will update the manifest.
...iFour Technolab en-IN ...
Here, we discussed Add-ins in Microsoft Outlook and their basic objects. We also discussed how to create one and at the end, we also tested the add-in in the live application.
E-Discovery is a crucial process for legal research enabling lawyers to find the digital evidence they need. It involves finding, collecting, and filtering e-data related to their...
It’s amazing to witness that legal consultants who once clung to print documents have now embraced modern technologies for their legal work. In fact, a recent survey revealed that over 72% of law firms employ cloud-based technologies for managing case files, scheduling, and billing. This shift is not just about convenience; it’s about the progress we observe in the legal field.
There’s a major transformation happening in the legal field, as legal consultants are turning their attention to new technology. Facts say that 48% of legal professionals have raised...