How to add file content in a postfix online

Modified on Mon, May 27, 2019 at 12:17 PM

Use jQuery.get ajax command to download the file and show content on screen.

Sample value of a postfix command:
^<span id='blockNote'></span>


<script>
$(function() {
$.get( "/Storage/1/1/0/Assets/Documents/blockNote.html", function( data ) {
$("#blockNote").html(data);});
});
</script>


Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article