` for formatting - Tags like ``, ``, `` are stripped ### Workarounds - Use asterisks (*) for emphasis when HTML tags aren't supported - Keep messages concise and prioritize essential information - Place most important content within the first 320 characters ## Automatic Cleanup The system includes automatic cleanup functionality: - Notes are deleted when their `is_enabled` condition becomes `false` (`InboxNoteRegistrar.php`) - This prevents stale notifications from persisting in the admin ## Actions Notes can include user actions defined through the `InboxNoteAction` class. Actions appear as buttons in the inbox note and can: - Navigate to specific admin pages - Trigger custom functionality - Dismiss or acknowledge the notification ## Best Practices 1. **Use descriptive, unique names** for note identification 2. **Implement proper conditional logic** in the `is_enabled` function 3. **Keep content concise** due to the 320-character limit 4. **Test note visibility conditions** thoroughly 5. **Provide clear, actionable next steps** through note actions 6. **Consider cleanup scenarios** when notes should be removed ## Existing Examples The codebase includes several inbox note implementations: - PayPal Working Capital note - Settings migration notices - Feature announcements These examples demonstrate conditional logic based on feature flags, user settings, and other criteria.