If you want only one record per Email and that the Timestamp is maximum try this:
SELECT Email,FormName,Timestamp,FirstName,LastName,Street,Town,City,County,Postcode,DayPhone,Newsletter,MoreInfo,Other
FROM #TName# X
WHERE FormName = '#CName#'
and X.TimeStamp=(select max(TimeStamp) from #TName#...