static bool isHtml(String? body) { if (body == null) return false; final trimmed = body.trimLeft(); return trimmed.startsWith('<'); }