#! /bin/ksh

# 1. get all email addresses
email=`sssearch status=retry *.db | ssformat -t %email`

# 2. process each record
for i in $email
do
	echo $i
	(
	sssearch email=$i *.db |
		ssformat -t "Dear %firstname,

Georgia Green, Mike Wogalter, and I have sent out two calls for reviewers
for the HFES Perspectives on HCI, but you have not responded.
Although we are happy with the response we have obtained,
high numbers of reviewers does not ensure high quality.
We think that your expertise will improve the quality of the collection.
We also think that having your name on the list of reviewers
will make the collection that much more prominent.
That is why we are contacting you and a few others personally.
We hope that you share our opinion that is is important for the HFES
to produce a collection of the best HCI papers for others to read,
and that you will be willing to volunteer your time.

We are finishing the initial pruning and are getting ready to send
out papers later this week, so please respond, positively or
negatively, to hfes-hci@cis.ohio-state.edu.  If it is a positive
response, then please include your preferred mailing address,
and if you would like to remain anonymous, please request that.

Gary Perlman (for Georgia Green and Mike Wogalter)

Here is another copy of the call for reviewers:

"
lynx -dump Web/call.html | unctrl | grep -v "Home Page"

	) | mail -s "HFES Perspectives on HCI: Final Call for Reviewers" $i
done
