Contact Us

Last updated: January 1, 2026

<h2>Get in Touch</h2> <p>Have a question, correction, or suggestion? We'd love to hear from you.</p> <div class="contact-form"> <h2>Send Us a Message</h2> <p>Use the form below to contact us. We'll respond within 2–3 business days.</p> <form id="contact-form" onsubmit="submitContact(event)"> <div class="form-group"> <label for="cf-name">Your Name</label> <input type="text" id="cf-name" name="name" required placeholder="John Smith"> </div> <div class="form-group"> <label for="cf-email">Email Address</label> <input type="email" id="cf-email" name="email" required placeholder="john@example.com"> </div> <div class="form-group"> <label for="cf-subject">Subject</label> <select id="cf-subject" name="subject"> <option value="correction">Report incorrect information</option> <option value="missing">Suggest a missing center</option> <option value="general">General inquiry</option> <option value="other">Other</option> </select> </div> <div class="form-group"> <label for="cf-message">Message</label> <textarea id="cf-message" name="message" required placeholder="Your message…"></textarea> </div> <button type="submit" class="form-submit">Send Message</button> <p id="cf-status" style="margin-top:12px;color:var(--green-800);display:none;">Thank you! Your message has been sent.</p> </form> </div> <script> function submitContact(e) { e.preventDefault(); var parts = ['epalmás','@','gmail','.com']; var to = parts.join('').replace('á','a'); var name = document.getElementById('cf-name').value; var subject = document.getElementById('cf-subject').value; var message = document.getElementById('cf-message').value; var body = 'Name: ' + name + '\n\n' + message; window.location.href = 'mailto:' + to + '?subject=' + encodeURIComponent('[Recycling Centers] ' + subject) + '&body=' + encodeURIComponent(body); document.getElementById('cf-status').style.display='block'; } </script>