#!/bin/bash

# Query 1: All from Burcu since May 2026
echo "=== Query 1: All mails from Burcu since May ==="
echo 'from:burcu.ozyalin@drcinik.com after:2026/05/01'

# Query 2: Explicit before/after subjects
echo ""
echo "=== Query 2: Before/after case study subjects ==="
echo 'from:burcu.ozyalin@drcinik.com subject:(before after OR case study OR patient case)'

# Query 3: Football players
echo ""
echo "=== Query 3: Football players (Gatti, Magalhães) ==="
echo 'from:burcu.ozyalin@drcinik.com (Gatti OR Magalhães)'

# Query 4: Patient cases
echo ""
echo "=== Query 4: Patient stories and articles ==="
echo 'from:burcu.ozyalin@drcinik.com (patient story OR hair transplant case OR eyebrow OR Kaş)'
