Exemplo n.º 1
0
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            //context.Response.Write("Hello World");
            String mail = context.Request["mail"];

            BLL.Users UserService = new BLL.Users();
            if (UserService.GetModelByMail(mail) != null)
            {
                UserService.SendMail(mail);
                context.Response.Write("OK");
            }
            else
            {
                context.Response.Write("No");
            }
        }