Flow designer inbound email trigger case sensitivity
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2022 12:39 AM
Hi Community,
I was wondering if ServiceNow offers a way to prevent case sensitivity on inbound email triggers in Flow Designer?
I'm working with a customer where inbound emails subject varies a lot.
Example:
I have a flow that triggers when email recipient is = test@test.com, but i some cases customers might send an e-mail to Test@test.com or TEST@test.com.
Thanks in advance!
- Labels:
-
Customer Service Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2022 06:01 AM
Think about voting for this Idea on the Idea portal also.
https://community.servicenow.com/community?id=view_idea&sysparm_idea_id=81aac4791b5730109a53ece7624bcb47&sysparm_idea_table=x_snc_com_ideation_idea&sysparm_module_id=enhancement_requests
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2022 11:41 PM
You can do it in Flow but you have to go through all the emails.
first action might be customer script action where you do the evaluation with toLowerCase().
then just kill the flow if not for this flow...
Do you have multiple flows for all different Email inbounds?
Could you do it with one but use subflows for different use cases?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-19-2022 01:25 AM
Hi Jake,
It is not possible to define this as the first action, since the flow will never trigger if their are no match.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-19-2022 05:29 AM
What i meant was that let it run with ALL emails - then define the first action to check the address with lowerCase() function.
So, trigger is for All emails!
Jake
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-22-2022 11:06 PM
Hi Jake,
That is unfortunately not possibility 🙂 But thanks.