Before to start with this post I have to say that this is AN UNSUPPORTED solution! Think about that before to use.
Now I can start to explain: I created an email template with style and script tags inside. In MSDCRM365 emails that are seen as an unsecure email and we have a yellow message notification in the body.
That is not a problem because the mail is sent but there is a “bad yellow” notification on the body:

The way to do that is to comment the Javascript code inside the formcontrols.js file in the Microsoft Dynamics CRM codes:
$get(‘WarningWithOpen’, this.$v_2).style.display = ‘block’;
$get(‘WarningWithOpen’, this.$v_2).style.display = ‘none’;//robm 12-08-2016 ‘block’;
(change all the occurences)
And add the following row in the AcrivitiesWallContent.css.aspx file:
.emailnotification {display: none;}
AS I SAID THAT IS UNSUPPORTED SOLUTION, AND YOU MUST THINK 100 TIME BEFORE TO USE!

Like
Report
*This post is locked for comments