Hello! I implemented an error notifier (due to bussiness reqs) and I am using the send smtp email activity.
The issue is that when I use html email (for better formatting) the exception.Message is cut short, instead of delivering the entire message whereas when I use a non html email the exception.Message is shown in full.
it could be the case that the text has content which again will be interpretated as html code.
e.g. Selector not found looking for <webctr ..... />
we can encode such text to entities by
So I’m in a bit of a hurry to do this and what I did was replace <,> and & with other characters using stringvar.replace and it pretty much worked, so your intuition why it was happening was correct.