fetchAll( "SELECT id, name, template_name, language_code, category, status, created_at FROM message_templates ORDER BY name ASC" ); echo json_encode([ 'success' => true, 'data' => $templates ]); } catch (Exception $e) { error_log("Error in get_templates.php: " . $e->getMessage()); http_response_code(500); echo json_encode([ 'success' => false, 'error' => 'Error interno del servidor' ]); } ?>