Original Subject prints when replying

I’ve written a button into our R6 mail template which prints and sends emails (for auditing purposes). The code is below:

@Command([FilePrint];“”);

MEMO_SEND:=“1024”;

FIELD ActionInProgress:=MEMO_SEND;

@If(@Command([FileSave]);@Command([FileCloseWindow]);@Return(“”))

This works fine … apart from:

If when replying the user changes the subject when the email is printed it shows the ORIGINAL subject from the email which they replied to.

Now I would be fine with this if new body text also didin’t show, but it does. I had thought about getting it to save the document first … but this last part just doesn’t ring true to me.

Subject: Original Subject prints when replying

If anyone wnated to know I added a:

@Command([FileSave]);

to the front of the code and it worked fine.