Send an email notification based if a checkbox is selected on the incident form

RupaliR
Tera Contributor

I want to send an email notification based if a checkbox is selected on the incident form
What are the better options?

 

 

Thanks

2 ACCEPTED SOLUTIONS

Dr Atul G- LNG
Tera Patron
Tera Patron

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]

****************************************************************************************************************

View solution in original post

mayankkumar
Tera Sage

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

View solution in original post

3 REPLIES 3

Dr Atul G- LNG
Tera Patron
Tera Patron

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]

****************************************************************************************************************

mayankkumar
Tera Sage

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

mayankkumar
Tera Sage

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