We typically respond within 24 hours during business days (Monday-Friday). For urgent order issues, please include your order number in the subject line for faster processing.
// Pre-launch bar email capture
function submitBarNotify(e) {
e.preventDefault();
var input = document.getElementById('barNotifyEmail');
var email = input.value.trim();
if (!email || !email.includes('@') || !email.includes('.')) return;
var btn = e.target.querySelector('button');
btn.textContent = '✓ Sent!';
setTimeout(function() { btn.textContent = 'Notify Me'; }, 2000);
input.value = '';
var iframe2 = document.createElement('iframe');
iframe2.name = 'notifyFrame2';
iframe2.style.display = 'none';
document.body.appendChild(iframe2);
var form2 = document.createElement('form');
form2.method = 'POST';
form2.action = 'https://script.google.com/macros/s/AKfycbxGd-TzTIFXou9Cp7iOpq0qHKLDcTZsDqx9sjMuiNYaeD_kGTGcF7HYK57xfPZ_aM_A4w/exec';
form2.target = 'notifyFrame2';
var p2 = { action: 'notify', email: email, product: 'General — Launch Bar', sku: '', timestamp: new Date().toISOString(), source: 'vantix_launch_bar' };
Object.keys(p2).forEach(function(k) { var i = document.createElement('input'); i.type='hidden'; i.name=k; i.value=p2[k]; form2.appendChild(i); });
document.body.appendChild(form2);
form2.submit();
setTimeout(function() { document.body.removeChild(form2); document.body.removeChild(iframe2); }, 5000);
}