user12585721
user12585721

Reputation:

Adding a Gmail action to an Azure Logic App

I'm trying to design a logic app that sends an e-mail to a given address when a service bus message is received:

Logic App

The problem is that when I try to save, I get the following error:

Failed to save logic app MyLogicApp. The operation on workflow 'MyLogicApp' cannot be completed because it contains connectors to applications 'servicebus' which are not compatible with the Gmail connector. Please see https://aka.ms/la-gmaildocs for more information.

The linked resource does give directions of how to get around this - setting up a client ID and secret for the GMail connector, but I just want to send an e-mail - I don't need it to be GMail. Is there an easier way around this? It seems like Microsoft's own connectors only work for O365 enterprise accounts.

Upvotes: 1

Views: 1329

Answers (1)

Frank Borzage
Frank Borzage

Reputation: 6796

Please use outlook.com connector to send email. This connector does not require enterprise accounts:

enter image description here

For more details, you can refer to Manage email, calendars, and contacts in Outlook.com by using Azure Logic Apps.

Upvotes: 1

Related Questions