{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}
{{ stats.total }}
Total Contacts
{{ stats.touch_1_sent }}
Touch 1 Sent
{{ stats.touch_2_sent }}
Touch 2 Sent
{{ stats.replied }}
Replied
{{ stats.pending_t1 }}
Pending T1
{{ stats.pending_t2 }}
Pending T2
Campaign Progress
{% if stats.total > 0 %} {% set pct1 = ((stats.touch_1_sent / stats.total) * 100) | round(1) %} {% set pct2 = ((stats.touch_2_sent / stats.total) * 100) | round(1) %} {% set pct_r = ((stats.replied / stats.total) * 100) | round(1) %} {% else %} {% set pct1 = 0 %}{% set pct2 = 0 %}{% set pct_r = 0 %} {% endif %}

Touch 1 sent {{ stats.touch_1_sent }} / {{ stats.total }}

Touch 2 sent {{ stats.touch_2_sent }} / {{ stats.touch_1_sent }}

Replied {{ stats.replied }} / {{ stats.total }}


Send Emails View Contacts
Contacts by Segment
{% for seg, count in stats.segments.items() | sort(attribute='1', reverse=True) %}
{{ seg }} {{ count }}
{% endfor %}

Zoho free limit: ~200/day  ·  Batch size: 80  ·  Delay: 8s between sends

Quick Reference

Sending Order

  1. press (national / international)
  2. heritage (estate / garden)
  3. history (podcasts / magazines)
  4. philosophy (ideas publications)
  5. lifestyle (luxury magazines)
  6. substack / influencer

Daily Limits

  • → Max 200 emails / day (Zoho free)
  • → 80 per batch run is safe
  • → Run twice / day = 160 out
  • → Follow-up after 7 days

After Replies

  • → Mark replied in Contacts tab
  • → Stops all follow-ups immediately
  • → Add a note about what they said
{% endblock %} {% block scripts %} {% endblock %}