To: [Company Technical Contact Email]
From: integration@flare99.com
Subject: 🎫 Welcome to Flare99 Ticket System - Integration Details
Hi [Contact Name],
Welcome to Flare99! We're excited to have [Company Name] as a partner. Your ticket system integration is now ready.
Company Name: [Company Name]
Tenant Slug: [tenant-slug]
API Endpoint: Redirect API Route
Dashboard URL: https://ticket.[company-domain].com
Subdomain: ticket.[tenant-slug].com (if custom domain not configured)
✅ HTTPS-enabled website
✅ User authentication system
✅ Access to modify frontend code (JavaScript)
✅ User email and name from your auth system
Step 1: Add this JavaScript to your site footer/header:
<script>
// Expose logged-in user data
window.authUser = {
email: '{{ user.email }}',
name: '{{ user.name }}'
};
// Function to redirect to ticket system
function contactSupport(e) {
if (e) e.preventDefault();
if (!window.authUser?.email) {
alert('Please sign in to submit a support ticket.');
window.location = '/login'; // Your login URL
return;
}
const form = document.createElement('form');
form.method = 'POST';
form.action = 'https://tickets.flare99.com/api/auth/redirect/[tenant-slug]';
form.target = '_blank';
['email', 'name'].forEach(field => {
const input = document.createElement('input');
input.type = 'hidden';
input.name = field;
input.value = window.authUser[field] || '';
form.appendChild(input);
});
document.body.appendChild(form);
form.submit();
form.remove();
}
</script>
Step 2: Add a "Submit Ticket" button/link:
<a href="#" onclick="contactSupport(event)">Submit Support Ticket</a>
Step 3: Test the integration:
We've prepared comprehensive guides for you:
📄 Full Integration Guide: See attached EXTERNAL_COMPANY_INTEGRATION_GUIDE.md
📋 Quick Checklist: See attached INTEGRATION_QUICK_CHECKLIST.md
We've included real-world examples:
All examples are in the attached documentation.
Want to use your own domain instead of our subdomain?
support.yourcompany.com instead of ticket.yourcompany.com// Open browser console on your site (F12)
// Run these commands:
// 1. Check user data
console.log(window.authUser);
// Should show: {email: "user@example.com", name: "John Doe"}
// 2. Check function exists
console.log(typeof contactSupport);
// Should show: "function"
// 3. Test manually (opens in same tab)
contactSupport(null, false);
✅ Logged-out users → Prompted to sign in
✅ Logged-in users → Redirected to ticket system
✅ Users auto-authenticated (no re-login)
✅ Can create tickets immediately
Our integration uses enterprise-grade security:
Your users' data is safe with us.
Access your admin dashboard:
https://ticket.[your-domain].com/loginFrom the admin panel, you can:
✅ Test with a few users first before rolling out company-wide
✅ Add the button to your main navigation for easy access
✅ Consider adding to your user profile/settings page
✅ Train your support team on the new system
❌ Forgetting to check if user is logged in
❌ Not using HTTPS (required for security)
❌ Hardcoding user data instead of using auth system
❌ Not testing logout/login flow
As a valued partner, you get access to:
✅ Unlimited tickets
✅ Unlimited team members
✅ Email notifications
✅ File attachments
✅ Priority levels
✅ Status tracking
✅ Analytics dashboard
⭐ Custom domain (yourcompany.com/support)
⭐ White-label branding
⭐ SLA management
⭐ Advanced reporting
⭐ API access for custom integrations
Contact sales@flare99.com for premium features.
Don't hesitate to reach out! We're here to help make your integration smooth and successful.
Primary Contact: [Your Account Manager Name]
Email: [accountmanager@flare99.com]
Phone: [+1-XXX-XXX-XXXX]
Looking forward to working with you!
Best regards,
The Flare99 Team
P.S. Need help getting started? Reply to this email to schedule a 30-minute onboarding call with our integration specialist.
EXTERNAL_COMPANY_INTEGRATION_GUIDE.md - Complete technical guideINTEGRATION_QUICK_CHECKLIST.md - Quick reference checklistintegration-examples.zip - Code examples for various platformsFlare99 Ticket System
Making support seamless, one integration at a time.
🌐 https://tickets.flare99.com
📧 support@flare99.com
📞 +1-XXX-XXX-XXXX