You can use ServletContext
In your Servlet 1 use setAttribute
ServletContext servletcontext = getServletContext();
servletcontext.setAttribute("Email", email);
In your servlet 2 use getAttribute
ServletContext servletcontext = getServletContext();
String ReferMail = (String)sc.getAttribute("Email");