I want to send mail for different users with some information, I Inserted a combo Box for choose the names and then I like to sent the mail, but when I use the Concat function I cant see the mail only this text.
Biultinicon: Mail
ThanksCancat Error
Combo box
Solved! Go to Solution.
Hi @MIza ,
The Items of your Combo Box
Office365Users.SearchUser({top: 999, SearchTerm: Self.SearchText})
DisplayName as the field displayed and the Text of your mail address field (note ; is required between email addresses in the To field in Outlook.
Concat(
ComboBox2.SelectedItems,
Mail,
";"
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @MIza ,
Mail is a default variable created by the system, so if you want to reference a field named Mail, there will be ambiguity.
First, Please check if there is a column named 'Mail' exists.
Secondly, this method can be used to eliminate ambiguity:
Please try :
Concat(ComboBox2.SelectedItems,ThisRecord.Mail,",")
Best Regards,
Bof
Hi @MIza ,
The Items of your Combo Box
Office365Users.SearchUser({top: 999, SearchTerm: Self.SearchText})
DisplayName as the field displayed and the Text of your mail address field (note ; is required between email addresses in the To field in Outlook.
Concat(
ComboBox2.SelectedItems,
Mail,
";"
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Thanks to All
User | Count |
---|---|
257 | |
108 | |
93 | |
57 | |
40 |