botserver/templates/sales/crm.gbai/crm.gbdialog/on-emulator-sent.bas
Rodrigo Rodriguez (Pragmatismo) 48c1ae0b51 , dt.month, dt.hour, dt.is_weekend, etc.)
- Add startup wizard module for first-run configuration
- Add white-label branding system with .product file support
- Add bot manager for lifecycle, MinIO buckets, and templates
- Add version tracking registry for component updates
- Create comparison doc: BASIC vs n8n/Zapier/Make/Copilot
- Add WhatsApp-style sample dialogs to template documentation
- Add data traceability SVG diagram ```
2025-11-30 15:07:29 -03:00

12 lines
322 B
QBasic

let items = FIND "gb.rob", "ACTION=EMUL_ASK"
FOR EACH item IN items
let to = item.emailcto
let subject = "Sobre o Simulador de AI enviado"
let name = FIRST(item.contact)
let body = GET "/EMUL-message.html"
CREATE_DRAFT to, subject, body
SET "gb.rob", "id="+ item.id, "ACTION=EMUL_ASKED"
NEXT item