- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2022 08:43 AM
I want to remove the watermark from the scheduled mail report.
Tried with this however '_WCGfhSStyWyW2H046QN1' is getting generated in report
Before insert BR for sys_email table.
current.body = String(current.body).replace(/Ref\:MSG(?:[0-9]*)/i,"");
current.body_text = String(current.body_text).replace(/Ref\:MSG(?:[0-9]*)/i,"");
Pleas suggest regex exp to clear this watermark.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-06-2022 08:52 AM
current.body = String(current.body).replace(/Ref\:MSG(?:[0-9]*)/i,"").replace(/_/g, "").replace(/\d[a-zA-Z]{2,10}.*\d[a-zA-Z]{2,10}/,"");
current.body_text = String(current.body_text).replace(/Ref\:MSG(?:[0-9]*)/i,"").replace(/_/g, "").replace(/\d[a-zA-Z]{2,10}.*\d[a-zA-Z]{2,10}/,"");
it worked for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2022 08:53 AM
Hi,
Have you tried with omit watermark check box.
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2022 09:57 PM
There is no field on the scheduled email of report.Please suggest
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-06-2022 08:52 AM
current.body = String(current.body).replace(/Ref\:MSG(?:[0-9]*)/i,"").replace(/_/g, "").replace(/\d[a-zA-Z]{2,10}.*\d[a-zA-Z]{2,10}/,"");
current.body_text = String(current.body_text).replace(/Ref\:MSG(?:[0-9]*)/i,"").replace(/_/g, "").replace(/\d[a-zA-Z]{2,10}.*\d[a-zA-Z]{2,10}/,"");
it worked for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2024 02:55 AM
Hi Priya,
It did not work for me.
After executing the report. The watermark is removed.
However, when the user replies from the email report, the watermark is available again.