Spaces:
Paused
Paused
File size: 19,022 Bytes
60a8067 c2b582c 60a8067 48298de 60a8067 c2b582c 60a8067 c2b582c ea935e1 60a8067 ea935e1 60a8067 ea935e1 60a8067 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 | from fastapi import FastAPI, UploadFile, File, Form, HTTPException, BackgroundTasks, Request
from fastapi.responses import HTMLResponse, JSONResponse, Response
from fastapi.middleware.cors import CORSMiddleware
import pandas as pd
import smtplib
import re
import json
import os
import io
import uuid
import base64
import time
import asyncio
import httpx
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from datetime import datetime, date
from urllib.parse import quote
from typing import Optional, List
from pydantic import BaseModel
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app = FastAPI(
title="EmailBlast Pro API",
description="Production email automation β per-row branding, HTML templates, open tracking, round-robin SMTP, warm-up mode",
version="2.0.0",
docs_url="/swagger", # default Swagger moved to /swagger
redoc_url="/redoc",
)
ALLOWED_ORIGINS = [
"https://aero-woad.vercel.app", # Vercel frontend
"http://localhost:3000", # local dev
"http://localhost:5500", # VS Code Live Server
]
app.add_middleware(
CORSMiddleware,
allow_origins=ALLOWED_ORIGINS,
allow_origin_regex=r"https://.*\.hf\.space", # allow any HF Space (self-calls)
allow_methods=["*"],
allow_headers=["*"],
)
# ββ In-memory stores ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
jobs: dict = {} # job_id -> job dict
open_events: dict = {} # job_id -> list of {email, ts}
email_regex = re.compile(r"^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# TEMPLATES
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
TEMPLATES = {
"plain": lambda ctx: (
f"Hello,\n\n"
f"Thank you for your interest in {ctx['from_name']}. {ctx['body_extra']}\n\n"
f"Best regards,\n{ctx['from_name']}\n{ctx['sender_address']}\n\n"
f"---\nUnsubscribe: {ctx['unsub']}"
),
"promo": lambda ctx: f"""<!DOCTYPE html>
<html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body{{margin:0;padding:0;background:#f4f4f4;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}}
.wrap{{max-width:600px;margin:32px auto;background:#ffffff;border-radius:12px;overflow:hidden;box-shadow:0 2px 16px rgba(0,0,0,0.08)}}
.hero{{background:linear-gradient(135deg,#0a0a0f 0%,#1a1a2e 100%);padding:40px 32px;text-align:center}}
.hero h1{{color:#e8ff47;font-size:28px;margin:0 0 8px;letter-spacing:-0.02em}}
.hero p{{color:#aaa;font-size:14px;margin:0}}
.body{{padding:32px}}
.body p{{color:#333;font-size:15px;line-height:1.7;margin:0 0 16px}}
.cta{{display:inline-block;background:#e8ff47;color:#0a0a0f;font-weight:700;padding:14px 32px;border-radius:8px;text-decoration:none;font-size:15px;margin:8px 0 24px}}
.footer{{background:#f9f9f9;border-top:1px solid #eee;padding:20px 32px;font-size:12px;color:#999;text-align:center}}
.footer a{{color:#999}}
</style></head>
<body>
<div class="wrap">
<div class="hero">
<h1>{ctx['from_name']}</h1>
<p>{ctx['subject']}</p>
</div>
<div class="body">
<p>Hello,</p>
<p>{ctx['body_extra']}</p>
{f'<a href="{ctx["cta_url"]}" class="cta">{ctx["cta_text"]}</a>' if ctx.get("cta_url") else ''}
<p style="font-size:13px;color:#888">Best regards,<br><strong>{ctx['from_name']}</strong><br>{ctx['sender_address']}</p>
</div>
<div class="footer">
<img src="{ctx['pixel']}" width="1" height="1" alt="" style="display:none"/>
<a href="{ctx['unsub']}">Unsubscribe</a> Β· {ctx['sender_address']}
</div>
</div>
</body></html>""",
"newsletter": lambda ctx: f"""<!DOCTYPE html>
<html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body{{margin:0;padding:0;background:#ffffff;font-family:Georgia,'Times New Roman',serif}}
.wrap{{max-width:580px;margin:0 auto;padding:40px 20px}}
.masthead{{border-bottom:3px solid #000;padding-bottom:16px;margin-bottom:32px}}
.masthead h1{{font-size:32px;margin:0;letter-spacing:-0.03em}}
.masthead span{{font-size:12px;text-transform:uppercase;letter-spacing:0.1em;color:#888}}
.content p{{font-size:16px;line-height:1.8;color:#222;margin:0 0 20px}}
.divider{{border:none;border-top:1px solid #eee;margin:32px 0}}
.footer{{font-size:11px;color:#aaa;margin-top:32px}}
.footer a{{color:#aaa}}
</style></head>
<body>
<div class="wrap">
<div class="masthead">
<h1>{ctx['from_name']}</h1>
<span>Newsletter Β· {datetime.now().strftime('%B %Y')}</span>
</div>
<div class="content">
<p>Hello,</p>
<p>{ctx['body_extra']}</p>
</div>
<hr class="divider"/>
<div class="footer">
<img src="{ctx['pixel']}" width="1" height="1" alt=""/>
<a href="{ctx['unsub']}">Unsubscribe</a> Β· {ctx['sender_address']}
</div>
</div>
</body></html>""",
}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# WARM-UP SCHEDULE (emails per session based on day number)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
WARMUP_SCHEDULE = [5, 10, 20, 30, 50, 75, 100, 150, 200, 300, 400]
def warmup_limit(day: int) -> int:
idx = max(0, min(day - 1, len(WARMUP_SCHEDULE) - 1))
return WARMUP_SCHEDULE[idx]
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# CORE BLAST RUNNER
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def run_blast(
job_id: str,
df: pd.DataFrame,
smtp_accounts: list, # [{"user":..., "pass":...}, ...]
subject: str,
default_from_name: str,
sender_address: str,
body_extra: str,
max_emails: int,
sleep_interval: float,
template_name: str,
cta_url: str,
cta_text: str,
warmup_day: int,
webhook_url: str,
base_url: str,
):
job = jobs[job_id]
job["status"] = "running"
sent_set = set()
# Apply warm-up cap if enabled
if warmup_day > 0:
cap = warmup_limit(warmup_day)
max_emails = min(max_emails, cap)
job["log"].append(f"π‘ Warm-up day {warmup_day} β capped at {cap} emails")
# Round-robin SMTP connection pool
servers = []
for acc in smtp_accounts:
try:
srv = smtplib.SMTP("smtp.gmail.com", 587)
srv.starttls()
srv.login(acc["user"], acc["pass"])
servers.append({"server": srv, "user": acc["user"]})
job["log"].append(f"β SMTP connected: {acc['user']}")
except Exception as e:
job["log"].append(f"β SMTP failed {acc['user']}: {e}")
if not servers:
job["status"] = "failed"
job["log"].append("No SMTP connections available β aborting.")
return
smtp_idx = 0
sent_count = 0
for _, row in df.iterrows():
if sent_count >= max_emails:
job["log"].append("Reached limit β stopping.")
break
to_email = row.get("Email", "")
if pd.isna(to_email) or not str(to_email).strip():
continue
to_email = str(to_email).strip()
if not email_regex.match(to_email):
continue
if to_email in sent_set:
continue
# Per-row overrides
from_name = row.get("FromName", default_from_name)
if pd.isna(from_name) or not str(from_name).strip():
from_name = default_from_name
from_name = str(from_name).strip()
reply_to = row.get("ReplyTo", None)
if pd.isna(reply_to) or not str(reply_to).strip():
reply_to = None
else:
reply_to = str(reply_to).strip()
row_body = row.get("BodyExtra", body_extra)
if pd.isna(row_body) or not str(row_body).strip():
row_body = body_extra
row_cta_url = row.get("CTAUrl", cta_url)
if pd.isna(row_cta_url) or not str(row_cta_url).strip():
row_cta_url = cta_url
# Tracking pixel URL
pixel = f"{base_url}/track/open/{job_id}/{quote(to_email)}"
unsub = f"{base_url}/unsubscribe/{job_id}/{quote(to_email)}"
ctx = {
"from_name": from_name,
"subject": subject,
"body_extra": row_body,
"sender_address": sender_address,
"cta_url": row_cta_url,
"cta_text": cta_text,
"pixel": pixel,
"unsub": unsub,
}
tmpl_fn = TEMPLATES.get(template_name, TEMPLATES["plain"])
is_html = template_name != "plain"
if is_html:
body = tmpl_fn(ctx)
mime_type = "html"
else:
body = tmpl_fn(ctx)
mime_type = "plain"
# Round-robin SMTP
acc = servers[smtp_idx % len(servers)]
smtp_idx += 1
gmail_user = acc["user"]
msg = MIMEMultipart("alternative")
msg["From"] = f"{from_name} <{gmail_user}>"
msg["To"] = to_email
msg["Subject"] = subject
if reply_to:
msg["Reply-To"] = reply_to
msg.attach(MIMEText(body, mime_type))
try:
acc["server"].sendmail(gmail_user, to_email, msg.as_string())
sent_count += 1
sent_set.add(to_email)
job["sent"] = sent_count
job["log"].append(
f"[{datetime.now().strftime('%H:%M:%S')}] β {to_email} via {gmail_user.split('@')[0]}β¦ as '{from_name}'"
)
except Exception as e:
job["errors"] += 1
job["log"].append(f"[{datetime.now().strftime('%H:%M:%S')}] β {to_email} β {e}")
time.sleep(sleep_interval)
for acc in servers:
try:
acc["server"].quit()
except Exception:
pass
job["status"] = "done"
job["sent"] = sent_count
job["log"].append(f"β
Done β {sent_count} sent, {job['errors']} errors.")
# Fire webhook if configured
if webhook_url and webhook_url.startswith("http"):
try:
import urllib.request
data = json.dumps({
"job_id": job_id,
"sent": sent_count,
"errors": job["errors"],
"status": "done"
}).encode()
req = urllib.request.Request(
webhook_url,
data=data,
headers={"Content-Type": "application/json"},
method="POST"
)
urllib.request.urlopen(req, timeout=5)
job["log"].append(f"π‘ Webhook fired β {webhook_url}")
except Exception as e:
job["log"].append(f"β Webhook failed: {e}")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ROUTES
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/", response_class=HTMLResponse)
async def root():
with open("index.html") as f:
return f.read()
@app.get("/health")
async def health():
return {
"ok": True,
"message": "EmailBlast Pro API is running.",
"version": "2.0.0",
"features": ["html-templates", "open-tracking", "round-robin-smtp", "warmup-mode", "webhooks", "per-row-branding"],
"endpoints": ["/health", "/send", "/status/{job_id}", "/track/open/{job_id}/{email}", "/analytics/{job_id}", "/docs", "/swagger"]
}
from fastapi.responses import RedirectResponse
@app.get("/docs", include_in_schema=False)
async def docs_redirect():
"""Redirect /docs to the Vercel documentation page."""
return RedirectResponse(url="https://aero-woad.vercel.app/email.html")
# ββ Read HF Space secrets once at startup ββββββββββββββββββββββββββββββββββββ
_DEFAULT_GMAIL_USER = os.getenv("GMAIL_USER", "")
_DEFAULT_GMAIL_PASS = os.getenv("GMAIL_PASS", "")
@app.get("/config")
async def config():
"""Returns non-sensitive config so the UI can pre-fill fields."""
return {
"gmail_user": _DEFAULT_GMAIL_USER,
"has_pass": bool(_DEFAULT_GMAIL_PASS),
}
@app.post("/send")
async def send_emails(
request: Request,
background_tasks: BackgroundTasks,
file: UploadFile = File(...),
# SMTP β falls back to HF Space secrets if left blank
gmail_user: str = Form(default=""),
gmail_pass: str = Form(default=""),
# Optional extra SMTP accounts for round-robin (JSON array string)
extra_accounts: str = Form("[]"),
# Campaign settings
subject: str = Form("Hello from Your Business"),
default_from_name: str = Form("Your Business"),
sender_address: str = Form("Your Business, City, Country"),
body_extra: str = Form("We'd love to share our latest updates with you."),
max_emails: int = Form(50),
sleep_interval: float = Form(5.0),
template_name: str = Form("plain"), # plain | promo | newsletter
cta_url: str = Form(""),
cta_text: str = Form("Learn More"),
warmup_day: int = Form(0), # 0 = disabled, 1-11+ = day in schedule
webhook_url: str = Form(""),
):
content = await file.read()
try:
if file.filename.endswith(".csv"):
df = pd.read_csv(io.BytesIO(content))
else:
df = pd.read_excel(io.BytesIO(content))
except Exception as e:
raise HTTPException(status_code=400, detail=f"Could not parse file: {e}")
if "Email" not in df.columns:
raise HTTPException(status_code=400, detail=f"File must have 'Email' column. Found: {list(df.columns)}")
# Fall back to HF Space secrets if the UI left the fields blank
if not gmail_user:
gmail_user = _DEFAULT_GMAIL_USER
if not gmail_pass:
gmail_pass = _DEFAULT_GMAIL_PASS
if not gmail_user or not gmail_pass:
raise HTTPException(status_code=400, detail="No Gmail credentials provided and no GMAIL_USER/GMAIL_PASS secrets configured.")
# Build SMTP list
smtp_accounts = [{"user": gmail_user, "pass": gmail_pass}]
try:
extras = json.loads(extra_accounts)
smtp_accounts.extend(extras)
except Exception:
pass
base_url = str(request.base_url).rstrip("/")
job_id = str(uuid.uuid4())[:8]
jobs[job_id] = {"status": "queued", "sent": 0, "total": len(df), "errors": 0, "log": []}
open_events[job_id] = []
background_tasks.add_task(
run_blast, job_id, df, smtp_accounts, subject,
default_from_name, sender_address, body_extra,
max_emails, sleep_interval, template_name,
cta_url, cta_text, warmup_day, webhook_url, base_url
)
return {
"job_id": job_id,
"total_rows": len(df),
"smtp_accounts": len(smtp_accounts),
"template": template_name,
"warmup_day": warmup_day,
"message": f"Job queued β poll /status/{job_id}"
}
@app.get("/status/{job_id}")
async def job_status(job_id: str):
if job_id not in jobs:
raise HTTPException(status_code=404, detail="Job not found")
j = jobs[job_id]
opens = len(open_events.get(job_id, []))
open_rate = round((opens / j["sent"] * 100), 1) if j["sent"] > 0 else 0
return {
"job_id": job_id,
"status": j["status"],
"sent": j["sent"],
"total": j["total"],
"errors": j["errors"],
"opens": opens,
"open_rate": f"{open_rate}%",
"log": j["log"][-80:],
}
@app.get("/analytics/{job_id}")
async def analytics(job_id: str):
if job_id not in jobs:
raise HTTPException(status_code=404, detail="Job not found")
j = jobs[job_id]
evts = open_events.get(job_id, [])
return {
"job_id": job_id,
"sent": j["sent"],
"opens": len(evts),
"open_rate": f"{round(len(evts)/j['sent']*100,1) if j['sent'] else 0}%",
"open_events": evts[-100:],
}
# ββ Tracking pixel ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
PIXEL_GIF = base64.b64decode(
"R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
)
@app.get("/track/open/{job_id}/{email}")
async def track_open(job_id: str, email: str):
if job_id in open_events:
open_events[job_id].append({"email": email, "ts": datetime.now().isoformat()})
if job_id in jobs:
jobs[job_id].setdefault("opens", 0)
jobs[job_id]["opens"] = len(open_events[job_id])
return Response(content=PIXEL_GIF, media_type="image/gif")
# ββ Unsubscribe page ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/unsubscribe/{job_id}/{email}", response_class=HTMLResponse)
async def unsubscribe(job_id: str, email: str):
return f"""<!DOCTYPE html><html><head><meta charset="UTF-8">
<style>body{{font-family:monospace;background:#0a0a0f;color:#e8e8f0;display:flex;align-items:center;justify-content:center;min-height:100vh;margin:0}}
.box{{text-align:center;max-width:400px;padding:40px}}.icon{{font-size:48px;margin-bottom:16px}}
h2{{color:#e8ff47;margin-bottom:8px}}p{{color:#888;font-size:14px}}</style></head>
<body><div class="box"><div class="icon">β</div>
<h2>Unsubscribed</h2><p>{email} has been removed from this list.</p></div></body></html>""" |