Thursday, October 22, 2020

SendGrid emails not working after disabled TLS 1.0

 Last month one of our client wanted to disable TLS 1.0 in server and they wanted to go with latest TLS 1.2.

After disabled this, the email wasn't working. To solve this I had to call this single line before call call send function.

ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;


  



No comments:

Post a Comment

TinyMCE Insert/Edit link not editable

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