- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2025 09:46 AM
I want to send an email notification based if a checkbox is selected on the incident form
What are the better options?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2025 02:18 PM
Hi @RupaliR
You can use Flow for this. In the Flow, check if the checkbox field is true — if it is, send an email notification. If not, skip the email
or create an email , add the trigger condition if check box = True
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2025 11:23 AM
Hi @RupaliR,
You can simply achieve it by configuring a business rule and using events
Business Rule -: when to run -> After insert/update
and then you can specify your conditions to run, or you can simply write it in the script
if(current.getValue('field_name) == true){
gs.eventQueue('event_name', current, param1, param2);
}
and then you have to create a notification which will be triggered on the event you have created.
for event configuration -> Events in ServiceNow - ServiceNow Community
This approach gives you more control, otherwise you can go with the other approach "flow designer" which Dr Atul mentioned.
If you need any further help, let me know
---------------------------------------------------------------------------------------------------------------------------
Please mark my response Helpful and accept as solution
Thanks & Regards
Mayank
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2025 02:18 PM
Hi @RupaliR
You can use Flow for this. In the Flow, check if the checkbox field is true — if it is, send an email notification. If not, skip the email
or create an email , add the trigger condition if check box = True
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2025 11:23 AM
Hi @RupaliR,
You can simply achieve it by configuring a business rule and using events
Business Rule -: when to run -> After insert/update
and then you can specify your conditions to run, or you can simply write it in the script
if(current.getValue('field_name) == true){
gs.eventQueue('event_name', current, param1, param2);
}
and then you have to create a notification which will be triggered on the event you have created.
for event configuration -> Events in ServiceNow - ServiceNow Community
This approach gives you more control, otherwise you can go with the other approach "flow designer" which Dr Atul mentioned.
If you need any further help, let me know
---------------------------------------------------------------------------------------------------------------------------
Please mark my response Helpful and accept as solution
Thanks & Regards
Mayank
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2025 04:34 AM
Hi @RupaliR,
If your query has been resolved, please accept my response as solution or if you need further help let me know.
Thanks & Regards
Mayank