Contact Us

✉️ We'd love to hear from you!
Fill out the form and our team will respond promptly.
Or email us at support@starfunnel.com
  • 📧 support@starfunnel.com
  • 🌐 www.starfunnel.com
body: JSON.stringify({ email, message }) }); const data = await res.json(); if (res.ok && data.success) { status.textContent = 'Message sent. We will get back to you shortly.'; status.style.color = '#28a745'; document.getElementById('contactForm').reset(); } else { status.textContent = (data && data.error) ? data.error : 'Failed to send message. Please try again.'; status.style.color = '#e00'; } } catch (err) { status.textContent = 'Failed to send message. Please try again.'; status.style.color = '#e00'; } });