Dears,
I have a SharePoint list with multiple choice column as shown below:
I need to send this multiple choice columns content by email.
How we can achieve this?
Any idea
Thanks
Solved! Go to Solution.
Hi @GhassSD :
Do you want to get something like this:
I've made a test for your reference:
1\My data source
2\Add a Button and set it's Onselect property to:
Set(TargetItem,First(MyTestSPList));/*Select a specified item and save its value to the variable TargetItem*/
Office365Outlook.SendEmailV2(
User().Email,
"TheTargetItem",
"Client Name: " & Concat(TargetItem.'Client Name',Value,";") & "<br>" &
"Client Industry: " & Concat(TargetItem.'Client Industry',Value,";") & "<br>" &
"Client Name: " & Concat(TargetItem.'Presentation int',Value,";")
)
Best Regards,
Bof
Do you want send an email from Power App or using Power Automate (after creating/updating SharePoint list item)?
If you want to send it using Power Automate then I will suggest you to ask this question on Power Automate forum at: https://powerusers.microsoft.com/t5/Building-Flows/bd-p/BuildingFlows
Power Automate forum contributors will help you quickly with this.
Please click Accept as solution if my answer helped you to solve your issue. This will help others to find the correct solution easily. If the answer was useful in other ways, please consider giving it 👍
Hi @GhassSD :
Do you want to get something like this:
I've made a test for your reference:
1\My data source
2\Add a Button and set it's Onselect property to:
Set(TargetItem,First(MyTestSPList));/*Select a specified item and save its value to the variable TargetItem*/
Office365Outlook.SendEmailV2(
User().Email,
"TheTargetItem",
"Client Name: " & Concat(TargetItem.'Client Name',Value,";") & "<br>" &
"Client Industry: " & Concat(TargetItem.'Client Industry',Value,";") & "<br>" &
"Client Name: " & Concat(TargetItem.'Presentation int',Value,";")
)
Best Regards,
Bof