- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2023 09:37 PM - edited 09-24-2023 11:37 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2023 12:19 AM
Please check the below screenshot, this is a entry from live_notification table, for every mentioned name in the worknotes/comments it will make a entry in that table
You can see "field_name" as work_notes and this email script is working on the table "live_notification", please add a check in your email script:
if(current.field_name == "work_notes"){
//Execute your worknotes template here OR customise message OR if you want to make it specific for a table you can also add a table check above
}else{
// you can execute normal execution whatever was present earlier
}
I hope you understand!
If my answer solved your issue, please mark my answer as ✅ Correct & 👍Helpful based on the Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2023 10:01 PM
Email which is getting triggered when someone has mentioned in worknotes/comments is this
You can open this notification and it is calling an email script as below:
Open the email script and edit the content as mentioned by the below link:
As per your scenario please replace
recordGR.comments.getJournalEntry(1)
TO
recordGR.worknotes.getJournalEntry(1)
If my answer solved your issue, please mark my answer as ✅ Correct & 👍Helpful based on the Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2023 10:26 PM - edited 09-24-2023 11:05 PM
working
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2023 10:34 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2023 10:55 PM
Ah!
I believe we are making a small mistake
Please update the code as
recordGR.work_notes.getJournalEntry(1)
If my answer solved your issue, please mark my answer as ✅ Correct & 👍Helpful based on the Impact.