I have created a notify event with a bunch of variables. For some reason they are appearing in my e-mail output on the notify event, even though I have said to hide the payload. They come out like this after the body of my message. I have "Payload" access set to Hidden, which forces "Modified Payload" to Default. I can't set both to hidden at the same time. If I try to add it to the Notify statement manually, I get an error.

TO("davshe")
SUBJECT(SUBSTITUTE("Standard CO {0} Line {1} for Customer {2} {3} saved in planned status!", P("CoNum"), P("CoLine"), P("CoCustNum"), P("Adr0Name")))
BODY(SUBSTITUTE("Standard CO {0} Line {1} for Customer {2} {3} has been saved in planned status.
User: {4}
Item: {5} {6}
Price: ${7}
Qty Ordered: {8} {9}
Total Price: ${10}
Customer Credit Limit: ${11}
Customer Order Balance ${12}
Customer Posted Balance ${13}", P("CoNum"), P("CoLine"), P("CoCustNum"), P("Adr0Name"), ORIGINATOR(), P("Item"), P("Description"), V(vFormatPR), V(vFormatQO), P("UM"), V(vFormatEP), V(vFormatCL), V(vFormatOB), V(vFormatPB)))
SAVEMESSAGE(FALSE)
PAYLOADACCESS(HIDDEN)
Anybody know a fix?