# Rich content with body text
Add detailed information to notifications using body content that supports Markdown formatting for rich text presentation. Body text appears below the title and can include emphasis, links, and other formatting to provide comprehensive context.
use Filament\Notifications\Notification;
// Notification with formatted body content
Notification::make()
->title('User profile updated')
->success()
->body('Changes to <b>John Doe\'s</b> profile have been saved. The user will receive an email confirmation shortly.')
->send();
// Multi-line body with Markdown formatting
Notification::make()
->title('Backup completed with warnings')
->warning()
->body('Database backup finished successfully, but some <b>temporary files</b> could not be cleaned up. Please review the [log file](/admin/logs) for details.')
->send();