Reputation: 1
I am trying to create a flow in Logic app which will send a outage email to bunch of recipient. Now here I have to add a trigger which will get the user details from PostgreSQL stored in variable. In email session I will call this variable in To session.
Connect PostgreSQL Get User details Stored in Variable calling the variable in Outlook session
Please need your help
Upvotes: 0
Views: 366
Reputation: 4786
Now PostgreSQL
connector available in logic app. If you use PostgreSQL connector in a logic app you need to create a gateway. That gateway installation, which appears in the list only when these conditions are met:
If it is possible to create a gateway you can use PostgreSQL Connector. Otherwise, you can use below method
You can use Azure function to connect PostgreSQL
and get data from PostgreSQL
using azure function.
Try to add the azure function in logic app (Check here for azure function call from logic app ).
Create a Custom API Connector ( logic-apps-create-api-app ) & a Custom Logic App Connector (custom-connector )
Refer here
Upvotes: 0