
Announcements
I want to send a notification to myself whenever the user clicked a button.
I have a fixed Subject and body is dynamic from a selected gallery in powerapps
It's asking me for 5 parameter but I don't why it came up with 5 while I think it should only be 2 (Body and From)
I want my Email body to have static text together with selected labels.
Client Name
Client Number
ClickabuttoninPowerAppstosendanemail.Run("Hi You have a new client",ClientListGallery.Selected.ClientName,ClientListGallery.Selected.Number)
something like that. Thank you
Hi @nagestiada :
Firstly,the 5 parameter problems you mentioned can usually be solved by recreating a new flow.
Secondly,If you just want to send e-mail to yourself, you can do it without using flow.I'v made a test for your reference:
1\Add an office365 Outlook connection
2\Add a button and set it's OnSelect to :
Office365Outlook.SendEmailV2("XXX@XXXXXX.com","subject","body")
I think this link will help you a lot:
https://docs.microsoft.com/en-us/connectors/office365/
Best Regards,
Bof