how to make connection with crm on click of out look send button

Uzma Khan 0 Reputation points
2023-03-09T10:11:58.63+00:00

Hello,

I need to fetch details of organizer, subject and start time of new meeting on click of the outlook send button, and stored it into the crm tables.

any help will be appreciated.

Microsoft 365 and Office | Development | Other
Outlook | Windows | Classic Outlook for Windows | For business
Microsoft 365 and Office | Install, redeem, activate | For business | Windows
Microsoft 365 and Office | Development | Microsoft 365 Publishing
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Eugene Astafiev 891 Reputation points
    2023-03-09T12:23:48.5733333+00:00

    In Office web add-ins you can make Fetch API requests. The Fetch API provides an interface for fetching resources (including across the network). It will seem familiar to anyone who has used XMLHttpRequest, but the new API provides a more powerful and flexible feature set.

    The On-send feature for Outlook add-ins provides a way to handle a message or meeting item, or block users from certain actions, and allows an add-in to set certain properties on send, where you could also make a web call.

    A lightweight launch events also can be considered, see Use Smart Alerts and the OnMessageSend and OnAppointmentSend events in your Outlook add-in for more information. The OnMessageSend and OnAppointmentSend events take advantage of Smart Alerts, which allows you to run logic after a user selects Send in their Outlook message or appointment. Your event handler allows you to give your users the opportunity to improve their emails and meeting invites before they're sent. Be aware, the OnMessageSend and OnAppointmentSend events were introduced in requirement set 1.12.

    See Differences between Smart Alerts and the on-send feature for more information.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.