Hi, for your pbm, I have done a similer one and it works.
U said Once the submission is completed, it will redirect back to the first page, but it is a hyperlink redirect. I use meta to redirect the page to an action but not a static page, like this:
<META HTTP-EQUIV="refresh" CONTENT="0;URL=http://localhost:8080/myApp/action/ShowEntryFormAction.do">
So I guess you can do this:
I believe to display the first page (which is that form), you should have an action class right? So just in the create email page (second page), you redirect it to call your first page's action class again, so all the form Bean's info will be displayed again.
Hope this helps.