I want to have an automation process to send email with(To and CC) recipients in a table based on service type .I want also to send an embedded app view as email body to have Approve or Reject answer to the requester.Here is how my table looks like:
You don’t need to hard code every service type into your expression since you already have a table for them.
I’m guessing the “Service Type” column in your “Requests” table is a REF to the “Service Types” table, in that case use these dereference expressions instead for your To and CC fields, respectively:
[Service Type].[To]
[Service Type].[CC]
You can read more about dereference expressions here:
I don’t understand your question, that expression would net you a list of the Service Types as text, but if you’re trying to populate a list for your user to choose from so he can pick a Service Type in your REF column then you should use only Services[ID] instead
I believe I have already answered both questions, do you understand how dereference expressions work and how you can use them to replace this expression:
I Think I do not have sufficient knowledge about using dereferrence ,that is why I could not get the idea.I will have a look on it and give your solution a try.