ServiceNow script to convert the image into base64Encoded strings (big string).
You can convert your image into base64 encoded string in ServiceNow with the help of below script include. var BigEncoder64 = Class.create();BigEncoder64.prototype = { initialize: function() { }, GetBase64EncodedString: function(attachment_s...
