Demo requests drop 50% after 24 hours without response. High-converting email template for robotics plant managers who viewed demo.
Re: Demo request at {{companyName}}Hi {{firstName}}, Saw you viewed our demo page. Quick question: what's driving your interest right now? I ask because the plant managers I work with typically reach out when they're hitting one of these walls: **Challenge 1**: Robot fleet utilization stuck at 60-65% vs 85%+ benchmark **Challenge 2**: Changeover times of 45-90 minutes between product runs limiting throughput **Challenge 3**: Teaching pendant programming taking 3-5 hours per new SKU I have a 15-minute slot on {{availableDay}} at {{availableTime}}. Would it make sense to have a quick conversation? Best, {{senderName}}
Personalization Tokens:
{{companyName}}{{firstName}}{{availableDay}}{{availableTime}}{{senderName}}Replace these with actual data from your CRM or database.
7-day no-reply? Auto-follow. 2-week quiet? Auto-revive.
24/7 pipeline monitoring, AI remembers when you forget.
Demo Page View follow-up
Reference the trigger event within first sentence. Show you understand their research phase and offer specific value based on their persona pain points.
👤 Robotics Plant Manager
Pain Points:
Goals:
Personalize with specific data
Reference their actual metrics if available, otherwise use industry averages.
Lead with value calculation
Show the cost of their current state before pitching solution.
Include social proof
Mention recognizable brands in their industry.
Create urgency with timing
Reference the trigger event (pricing view, demo view, etc.) to show relevance.
Clear CTA
Specific time slot offer (not "let me know if interested").
Code samples to integrate this template into your application.
// Track demo page engagement
const demoTracker = {
startTime: null,
scrollDepth: 0,
init() {
this.startTime = Date.now();
this.trackScroll();
},
trackScroll() {
window.addEventListener('scroll', () => {
const scrollPercent = Math.round(
(window.scrollY / (document.body.scrollHeight - window.innerHeight)) * 100
);
this.scrollDepth = Math.max(this.scrollDepth, scrollPercent);
});
},
async sendToOptifai(visitorId) {
const timeOnPage = Math.round((Date.now() - this.startTime) / 1000);
await fetch('https://api.optif.ai/v1/signals', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + API_KEY
},
body: JSON.stringify({
event: 'demo_page_engagement',
visitor_id: visitorId,
timestamp: new Date().toISOString(),
metadata: {
time_on_page_seconds: timeOnPage,
scroll_depth: this.scrollDepth
}
})
});
}
};
// Initialize on page load
demoTracker.init();💡 Replace API_KEY with your actual Optifai API key. Get your key from Settings → API/Webhook.
Have more questions? Feel free to contact us.
7-day no-reply? Auto-follow. 2-week quiet? Auto-revive.
24/7 pipeline monitoring, AI remembers when you forget.