- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-24-2022 09:00 AM
Hello everyone,
I need some quick insight, i want to update a true/false field after the response of a particular email is "yes". Would a business rule or inbound action be the best approach?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-24-2022 09:05 AM
Go with inbound action, that is only way to handle, through BR you can't do changes based on email response
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-24-2022 09:05 AM
Go with inbound action, that is only way to handle, through BR you can't do changes based on email response
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-24-2022 09:09 AM
Hi JU,
I would recommend using an inbound action for this requirement
If the body contains a name:value pair for the yes response you can easily extract it in the inbound action script for example
Email Body
Satisfied:Yes
Inbound action script (update the comments of the associated ticket)
if(email.body.satisified == 'Yes'){
current.comments = 'Fantastic'
current.update();
}
For more information on the email object for inbound actions please refer to the documentation below:
Hope this helps,
Shane