private async Task CrearNuevaCampanaAsync(string contenido) { var procesador = new Procesador(); bool result = await procesador.CrearNuevaCampanaEmailAsync(tag.Text, remitente.name, remitente.email, campana.Text, contenido, subject.Text); if (!result) { MessageBox.Show("CAMPAÑA CREADA CORRECTAMENTE", "INFORMACION DEL SISTEMA", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("CREACION DE CAMPAÑA FALLIDA", "INFORMACION DEL SISTEMA", MessageBoxButtons.OK, MessageBoxIcon.Error); } Limpiar(); }