Hello,
I have a SharePoint list - Contacts. It has a field named Email.
I would like to generate an email using the values in the Email field.
I will use a button that once clicked will open Outlook and pass email values into To field of the email.
Launch("mailto:" & Contacts.Email.)
How do I build a string that would get me list's value in the following format: email1;email2 and so on?
What is the best way to do it?
Thank you.
Solved! Go to Solution.
Hi @vladta ,
Like this
Concat(
Contacts,
Email & ";"
)
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.
Hi @vladta ,
Like this
Concat(
Contacts,
Email & ";"
)
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.
Thank you.
What would be the algorithm for this whole problem? Do I build an array variable, iterate SharePoint list with loop, and then populate the variable in order to plug it into "mailto:..." command? Or is there an easier way?
@vladta ,
No - you simply turn table fields into a string (email addresses separated by semi-colons) using the code I posted.
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.