Embed images in the email when sending it from the Oracle APEX Application

When using Oracle APEX hosted externally, such as on Oracle Cloud, if your application includes sending an email notification with embedded images from linked images, the image may look broken, as seen below. Based on the warning message, the embedded image’s host, which the email is referring to, is not on the safe list. Obviously, …

Embed images in the email when sending it from the Oracle APEX Application Read More »

Create ChatGPT Power Apps app using Azure OpenAI Chat Completions GPT API

If you have access to the OpenAI Chat Completions GPT APIs either through the one from OpenAI LLC or Azure OpenAI, it is pretty simple to create the ChatGPT-like app using Power Apps and Power Automate. The intention of this article is to create a simple application process without worrying too much about making it …

Create ChatGPT Power Apps app using Azure OpenAI Chat Completions GPT API Read More »

PowerShell – Get the list of all connectors used by each Power Apps application

The PowerShell script will list all connectors used in the Power Apps application in all environments user has access to. # Required Modules (installed as admin) #   Install-Module -Name Microsoft.PowerApps.Administration.PowerShell #   Install-Module -Name Microsoft.PowerApps.PowerShell -AllowClobber # $Delimiter = “,” # Get list of all Environments $Environments = Get-PowerAppEnvironment | Select-Object -Property EnvironmentName, DisplayName  write-host $Environments # Loop …

PowerShell – Get the list of all connectors used by each Power Apps application Read More »

Power Apps Save Combo Box with Office 365 Users to SharePoint List’s Person Data

This is a quick post showing how to save Office 365 Users data from the combo box to a SharePoint list. It shows two combo boxes with Office 365 Users – one allowing only one selection, another allows multiple. The former will save to the SharePoint column with the Person data type, the latter to …

Power Apps Save Combo Box with Office 365 Users to SharePoint List’s Person Data Read More »

Call Azure Form Recognizer API on SharePoint document/image URL in Power Automate

Power Automate (formerly Microsoft Flow) can call Azure Form Recognizer via the connector. However, at the time of this writing, the Form Recognizer v2 connector is not yet available. One of the options is to use the HTTP connection. Refer to my previous post, we can call Form Recognizer API by passing the image URL …

Call Azure Form Recognizer API on SharePoint document/image URL in Power Automate Read More »

Scroll to Top