Have a response form with action button that has MailTo formula. Works well except value of text field does not display in mail memo sent to user. Even tried hidden, computed field of text field (thought I was clever -- not!)
Here's my formula:
SendTo :=@Unique(Authors);
CopyTo :="Bette Boop/";
Subject := "Status of your "+ @If(Subject="";ReportCategory;Subject) + " request";
Remark := "Your request referenced in the subject line has NOT been approved. The reason(s) for its not being approved: " + ComputedReason;
REM;
@MailSend(SendTo;CopyTo;""; Subject; Remark; ""
@Command ([FileSave]);
@Command ([FileCloseWindow])
Works like a charm except the "ComputedReason" field does not display in the body of the memo.
Would really appreciate your help. Thanks
Here's my formula:
SendTo :=@Unique(Authors);
CopyTo :="Bette Boop/";
Subject := "Status of your "+ @If(Subject="";ReportCategory;Subject) + " request";
Remark := "Your request referenced in the subject line has NOT been approved. The reason(s) for its not being approved: " + ComputedReason;
REM;
@MailSend(SendTo;CopyTo;""; Subject; Remark; ""
@Command ([FileSave]);
@Command ([FileCloseWindow])
Works like a charm except the "ComputedReason" field does not display in the body of the memo.
Would really appreciate your help. Thanks