Get In Touch
Have questions about our products or need a custom quote? Fill out the form and our team will get back to you within 24 hours.
Business Hours
Monday – Friday: 9:00 AM – 6:00 PM
Saturday: 9:00 AM – 12:00 PM
Sunday: Closed
Send Us a Message
We respect your privacy. Your information will not be shared.
document.getElementById(‘mushroomrack-contact-form’).addEventListener(‘submit’, function(e) {
e.preventDefault();
var email = document.getElementById(‘cf-email’).value.trim();
var whatsapp = document.getElementById(‘cf-whatsapp’).value.trim();
var message = document.getElementById(‘cf-message’).value.trim();
if (!email || !message) {
document.getElementById(‘cf-error’).style.display = ‘block’;
document.getElementById(‘cf-success’).style.display = ‘none’;
return;
}
var body = ‘Email: ‘ + email + ‘%0A’;
body += ‘WhatsApp: ‘ + (whatsapp || ‘Not provided’) + ‘%0A%0A’;
body += ‘Message:%0A’ + message;
var mailtoLink = ‘mailto:Harris@mushroomrack.com?subject=Message from MushroomRack Website&body=’ + body;
window.location.href = mailtoLink;
document.getElementById(‘cf-success’).style.display = ‘block’;
document.getElementById(‘cf-error’).style.display = ‘none’;
});