Boyce Washington Real Estate logo Request Consultation
Contact Us

Send Us a Message

Whether you are preparing to sell, comparing your options, or simply need clear guidance, Boyce Washington Real Estate is ready to help.

How can we help?

Complete the form and we’ll get back to you soon.

Company Contact Information

Email info@boycewashington.com
Office 762.400.0123
Service Area Georgia & South Carolina
const data = new FormData(event.currentTarget); const name = String(data.get('name') || '').trim(); const email = String(data.get('email') || '').trim(); const phone = String(data.get('phone') || '').trim(); const propertyAddress = String(data.get('property_address') || '').trim(); const interest = String(data.get('interest') || '').trim(); const preferredContact = String(data.get('preferred_contact') || '').trim(); const message = String(data.get('message') || '').trim(); const subject = 'Website inquiry from ' + name; const body = [ 'Name: ' + name, 'Email: ' + email, 'Phone: ' + (phone || 'Not provided'), 'Property address: ' + (propertyAddress || 'Not provided'), 'Interested in: ' + interest, 'Preferred contact method: ' + preferredContact, '', 'Message:', message ].join('\n'); event.currentTarget.reset(); event.currentTarget.reset(); document.getElementById('form-content').style.display = 'none'; document.getElementById('form-success').style.display = 'block'; window.location.href = 'mailto:info@boycewashington.com?subject=' + encodeURIComponent(subject) + '&body=' + encodeURIComponent(body); });