Hi Michael
No unfortunately I have been under pressure to get the app out and I ended up concatenating the values of my Stored variables and page components.
This is not ideal but was a quick alternative.
var str1 = "New Reservation Enquiry from - Name: ";
var n = str1.concat(localStorage.getItem("Name"), ', Surname: ', localStorage.getItem("Surname"), ', Phone: ', localStorage.getItem("Mobile"),', Email: ', localStorage.getItem("Email"),' Arrival: ', Appery("R_Date").getAttr("defaultDateValue"), ' Nights: ', Appery('R_Nights').val(), ' Rooms: ', Appery('R_Rooms').val(), ' Adults: ', Appery('R_Adults').val(), ' Children: ', Appery('R_Children').val());
localStorage.setItem('txtMessage', n);
Sorry I could not be of more help. I will have to explore the HTML route at some stage and will update this thread if successful.