I am trying to build a conversational process that can target either a user's email or computer name. Is it possible to configure a slot to automatically handle user input as follows?
- If the input is an email address, use it as the slot value.
- If the input is not in an email address format, attempt to find a user by that name and use the matching user's email address as the slot value. If no matching user is found, use the original input text as the slot value.
I plan to use a decision policy to process this slot differently based on whether it’s an email address or a computer name.
Thank you.