- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2023 10:07 PM
Hi Team,
I have a Requirement to Send a high-importance email from an Email Client
Thanks
Ramji
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2023 10:39 PM
I have already tried but unfortunately not working
please see the below screenshot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2023 10:25 PM
There is no OOB solution for this, But you can write a business rule on the emails table to set the email as high importance before sending it out to the users.
Create an onBefore/Update Business Rule with the below configurations.
Condition
Script
(function executeRule(current, previous /*null when async*/) {
current.importance = "high";
current.subject = current.subject.substring(1);
})(current, previous);
If the user adds an '!' to the start of the subject in the Email Client, the Business rule will mark the email as High Importance. It will also remove the '!' from the subject.
If I could help you with my response you can mark it as helpful and correct as it benefits future viewers
Thanks,
Sai Kumar B
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2023 10:39 PM