Wednesday, November 4, 2020

Authentication failed because remote party has closed the transport stream

This error message generally receive when you are try to send emails through TLS 1.2 or higher. To solve this add this line before send emails. 

ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;

TinyMCE Insert/Edit link not editable

 To fix this add  e.stopImmediatePropagation()  as below. $(document).on('focusin', function (e) {             if ($(e.target).close...