{% extends "base.html" %} {% block content %}
{% if not smtp_configured %}
✗ SMTP not configured — go to Settings and fill in your SMTP host, port, username and password before sending.
{% endif %} {% if not pitched_leads %}
⚠ No pitched leads found. Go to the Pitch Writer and generate pitches first.
{% endif %}
// campaign settings
multipart/alternative (text+html)  ·  List-Unsubscribe header  ·  randomised delays  ·  unsubscribe footer  ·  CAN-SPAM compliant
{% if pitched_leads %}
Queued leads
{{ pitched_leads|length }} / {{ pitched_leads|length }} selected
{% for lead in pitched_leads %} {% set initials = ((lead.first_name or '?')[0] + (lead.last_name or '?')[0])|upper %} {% set conf = lead.email_confidence or 0 %} {% set conf_pct = (conf * 100)|int %} {% set conf_colour = 'var(--green)' if conf >= 0.75 else '#f87171' %}
{{ initials }}
{{ lead.full_name or '—' }}
{{ lead.company or '—' }}
{{ lead.email }}
{% if conf_pct > 0 %}{{ conf_pct }}% confidence{% endif %}
{{ lead.pitch_subject or '—' }}
pending
{% endfor %}
{% endif %}
{% endblock %}