自動車のパイロットプログラムは四半期レビューなしで停滞—今すぐ再エンゲージ。 自動車部品の営業責任者がトライアル停止後48時間で自動送信。パイプライン可視化と予測精度に焦点。
{{firstName}}, quick question about your trialHi {{firstName}}, I saw you paused your trial right after {{triggerAction}}. Most automotive Sales Leaders we work with struggle with: 1. **Pipeline blind spots** → Deals stall in PPAP stage with no visibility until OEM rejects 2. **Forecast guesswork** → Quarter-end predictions off by 25-30% because stage data lives in emails 3. **Quote follow-up chaos** → Reps forget to chase $500K+ quotes until it's too late We helped Aisin's sales leadership reduce forecast variance from 32% to 4% and recover 18 stalled deals worth $3.2M. Can I show you a 15-minute rescue demo specific to automotive parts sales? {{calendarLink}} Best, {{senderName}} P.S. Here's how they did it: /kits/automotive-playbook/
パーソナライゼーショントークン:
{{firstName}}{{triggerAction}}{{calendarLink}}{{senderName}}これらをCRMやデータベースの実際のデータに置き換えてください。
このテンプレートが効果的な理由を示すマクロ指標
生産回復—サプライヤーが契約を競争
出典: OICA Q3 2024
長い認定期間=早期に会話を開始する必要
出典: OEM Standards
EV移行が新しいサプライヤー機会を創出
出典: Industry Analysis
半導体装置会社が技術評価後の自動フォローアップを実装し、販売サイクルを180日から90日に短縮。
Improved efficiency and measurable ROI.
産業機械サプライヤーが体系的な競合置換キャンペーンを通じて勝率を23%向上。
Improved efficiency and measurable ROI.
👤 Automotive Parts Sales Leader
Pain Points:
Goals:
Personalize with specific data
Replace {{variables}} with actual company name, contact name, and relevant metrics.
Adjust the tone
Choose conservative, standard, or aggressive based on your relationship and industry.
Add social proof
Include relevant case studies or metrics from similar companies in their industry.
Set clear CTA
Propose specific meeting times rather than open-ended requests.
Test and iterate
Track open/reply rates and adjust subject lines and body copy based on performance.
このテンプレートをアプリケーションに統合するためのコードサンプルです。
// Track trial user activity
async function updateTrialActivity(userId, activityType) {
const lastActivity = new Date().toISOString();
// Update local database
await db.users.update({
where: { id: userId },
data: {
last_activity: lastActivity,
activity_count: { increment: 1 }
}
});
// Send to Optifai
await fetch('https://api.optif.ai/v1/signals', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + API_KEY
},
body: JSON.stringify({
event: 'trial_activity',
user_id: userId,
timestamp: lastActivity,
metadata: {
activity_type: activityType,
trial_day: calculateTrialDay(userId)
}
})
});
}
// Check for inactive trials (run daily)
async function checkInactiveTrials() {
const inactiveUsers = await db.users.findMany({
where: {
trial_status: 'active',
last_activity: {
lt: new Date(Date.now() - 7 * 24 * 60 * 60 * 1000) // 7 days ago
}
}
});
for (const user of inactiveUsers) {
await fetch('https://api.optif.ai/v1/signals', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + API_KEY
},
body: JSON.stringify({
event: 'trial_inactive',
user_id: user.id,
timestamp: new Date().toISOString(),
metadata: {
last_active_days: calculateDaysSince(user.last_activity),
trial_days_remaining: calculateTrialDaysRemaining(user)
}
})
});
}
}💡 API_KEY を実際のOptifai APIキーに置き換えてください。APIキーは設定 → API/Webhookから取得できます。
他にご質問がありますか?お気軽にお問い合わせください。