Well, I think I am stuck. I followed your steps and about the only thing I get is the subject is correct.
Here is what my HTML Document Looks like:
<strong>Open PASS Reports Prepared By: </strong><<PASS_EmployeeReportSummary.Employee.Name>> <br>
Date: <<CURRENT_DATE>><br>
You currently have <<Count PASS WHERE (PASS.PreparedBy=PASS_EmployeeReportSummary.Employee and PASS.ReportProgress.ReportProgress=`Open`)>> open PASS Reports:
<<LIST_TABLE(`FIND PASS WHERE (PASS.PreparedBy=Employee and PASS.ReportProgress.ReportProgress=`Open`) ORDER By Date_Event DESC`,`tempEmployeeName`,`Date_Event_DatePartOnly`,`SummaryOfEvent`)>>
My subject line looks like this and it works:
Open PASS Reports for <<PASS_EmployeeReportSummary.Employee.Name>>
The email message I receive when I run it looks like this:
Open PASS Reports for James Stephenson
Open PASS Reports Prepared By: <>
Date: <>
You currently have <> open PASS Reports:
<>
The process I run looks like this:
FIND PASS_EmployeeReportSummary WHERE PASS_EmployeeReportSummary.scEmployeeStatus='Active' AND PASS_EmployeeReportSummary.Preparer_TotalOpenReports>0 IN BATCHES OF 1
SEND OutgoingEmail_OpenReportsForPreparer TO PASS_EmployeeReportSummary.Employee
Somewhere I am missing something. What seems odd to me is that even the CURRENT_DATE doesn't show anything.