protected void btnAceptar_Click(object sender, EventArgs e) { WebApplication3.DataSet1TableAdapters.Clientes1TableAdapter adapter = new WebApplication3.DataSet1TableAdapters.Clientes1TableAdapter(); DataTable row = adapter.ObtenerDatos(); foreach (DataRow correo in row.Rows) { EnviarEmail2(txtMensaje.Text, txtAsunto.Text, correo["Email"].ToString()); } }
protected void Button1_Click(object sender, EventArgs e) { WebApplication3.DataSet1TableAdapters.Clientes1TableAdapter adapter = new WebApplication3.DataSet1TableAdapters.Clientes1TableAdapter(); asunto = "Vencimiento de tu plan"; DataTable row = adapter.ObtenerDatos(); foreach (DataRow correo in row.Rows) { mensaje = correo["NombresCompletos"].ToString() + " Tu plan esta proximo a vencerse, comunicate con el Administrador para renovar tu plan"; EnviarEmail2(mensaje, asunto, correo["Email"].ToString()); } }
protected void Button3_Click(object sender, EventArgs e) { WebApplication3.DataSet1TableAdapters.Clientes1TableAdapter adapter = new WebApplication3.DataSet1TableAdapters.Clientes1TableAdapter(); asunto = "Fecha de Vencimiento"; DataTable row = adapter.ObtenerDatos(); foreach (DataRow correo in row.Rows) { if (correo["FechaDeVencimiento"].Equals(DateTime.Now.ToShortDateString())) { mensaje = correo["NombresCompletos"].ToString() + " Tu plan vence hoy, comunicate con el Administrador para renovar tu plan"; EnviarEmail2(mensaje, asunto, correo["Email"].ToString()); } } }
protected void Button2_Click(object sender, EventArgs e) { WebApplication3.DataSet1TableAdapters.Clientes1TableAdapter adapter = new WebApplication3.DataSet1TableAdapters.Clientes1TableAdapter(); asunto = "Vencimiento de tus Clases"; DataTable row = adapter.ObtenerDatos(); foreach (DataRow correo in row.Rows) { if (Convert.ToInt32(correo["ClasesActivas"]) == 1) { mensaje = correo["NombresCompletos"].ToString() + " Tus Clases estan proximas a vencerse, comunicate con el Administrador para adquirir mas clases"; EnviarEmail2(mensaje, asunto, correo["Email"].ToString()); } } }