Request for Support: Essential Items & Technology by Community Partners
Thank you for your partnership. SOAR Outreach is dedicated to supporting our shared community by providing essential resources to individuals and families in transition or need.
Please use this form to refer a client for specific donated items. To ensure we provide the most appropriate support, we ask that you complete this referral with as much detail as possible.
By submitting this referral, you confirm that:
The client has a demonstrated need for the items requested.
You have obtained the client’s consent to share their information with SOAR Outreach.
The items provided will be used solely for the benefit of the client/family and are not for resale.
Submitting a request does not guarantee receipt of items.
Technology devices are intended for educational, job-seeking, or essential personal use. Due to the high value and limited supply of laptops and tablets, these items may require additional verification or a brief orientation for the client upon receipt.
While we inspect all donations, clothing and technology are new, “gently used” and provided in “as-is” condition.
Once your request is processed, a member of our team will contact you via email or phone within 1-3 business days to confirm receipt of request, availability and schedule a delivery.
While we strive to fulfill every request, please note that distribution is based on current inventory and is first-come, first-served.
We respect the privacy of the families you serve. All client data shared via this portal is encrypted and will only be used by our fulfillment team to process this specific request.
document.addEventListener('DOMContentLoaded', function() {
// Only apply on mobile
function initMobileSubmenus() {
if (window.innerWidth > 1024) return;
document.querySelectorAll('.menu-item-has-children > a').forEach(link => {
// Remove previous click handlers to prevent duplicates
link.replaceWith(link.cloneNode(true));
});
document.querySelectorAll('.menu-item-has-children > a').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault(); // prevent navigation
const submenu = this.nextElementSibling;
if (!submenu) return;
// Close any other open submenus
document.querySelectorAll('.menu-item-has-children .sub-menu.open').forEach(other => {
if (other !== submenu) {
other.classList.remove('open');
other.style.display = 'none';
}
});
// Toggle this submenu
if (submenu.classList.contains('open')) {
submenu.classList.remove('open');
submenu.style.display = 'none';
} else {
submenu.classList.add('open');
submenu.style.display = 'block';
}
});
});
}
initMobileSubmenus();
// Re-initialize on window resize in case user rotates device
window.addEventListener('resize', initMobileSubmenus);
});