Getting a FHIR Questionnaire from a server into a patient's hands sounds like a solved problem until you try it across a real outpatient panel. Some patients live in the portal, some ignore email, some only respond to text, some need a phone call. The delivery channel decides completion rates more than the form itself does, and in 2026 the options have spread out enough to be worth ranking.
The six below cover where outpatient teams actually land when designing a real Questionnaire delivery workflow. For related context, the FHIR walkthrough archive on this site collects the surrounding notes.
1. Patient Portal Inbox as the Anchor Channel
The portal message with an embedded form link is still the default for most outpatient practices. It sits inside an authenticated session, identity is resolved, and the QuestionnaireResponse can post back through the same token. The catch is that portal login rates in outpatient settings hover in a modest band, and older cohorts skip the portal entirely, so portal-only delivery caps completion at the portal's own reach.
2. SMS Link Delivery for Reach Outside the Portal
SMS wins on raw reach. A short link opens a mobile-friendly renderer, sidestepping the login problem and hitting every patient with a working phone number. SDC ExtractDefinition is the standard mechanism for turning the response into Observations; whether you build the runtime yourself or lean on an engine like Formbox, the extraction contract is the same, which means SMS delivery does not force a proprietary data path.
Where SMS gets awkward is authentication. A raw link is an unauthenticated surface, so the identity check has to happen inside the form or through a one-time code. In practice most teams accept a lightweight verification step and treat SMS as the primary reach lever while the portal handles higher-assurance flows.
3. Email Delivery With a Renderer-Backed Link
Email lives between the portal and SMS. Open rates trail SMS, but the message can carry more context: instructions, an explanation of why the form matters, and a longer link that supports a deep link into the renderer. Email is the reasonable fallback when SMS opt-in is not in place or when the form is long enough that a patient will want to skim the ask before starting.
4. Voice Callback for the Non-Digital Slice
A portion of every outpatient panel does not respond to any digital channel. A voice-based callback, human agent or scripted IVR, remains the honest way to reach that slice. Some 2026 stacks are experimenting with LLM-assisted voice agents that read the Questionnaire aloud, worth watching but not yet a default. Human callback for a small tail cohort is still the right pattern for most practices.
5. In-Clinic Tablet on Check-In
Tablet intake at the front desk is the channel that gets skipped in these lists too often. It reaches every patient who shows up in person, which for many outpatient specialties is nearly the whole panel. The tradeoff is that the form has to be short enough to complete in the waiting room without backing up the schedule. Tablet delivery pairs well with an SMS pre-visit follow-up for the parts that do not fit into the waiting-room window.
6. Native App Push for High-Volume Programs
For programs with a dedicated patient app, push notification is the highest-fidelity channel. Identity is authenticated, the renderer runs natively, and the form can be filled offline and synced later. In the FHIR-native camp, tools like Formbox handle the full SDC IG including population and extraction inside the same runtime, which is the piece most engagement-first platforms leave to a separate integration engine and which matters when the app has to sync partial responses back cleanly. The catch is that a native app is a heavy investment that only makes sense once form volume justifies it.
If you want to prototype a form without spinning up a full server, form-builder.aidbox.app offers a browser sandbox for standard Questionnaire JSON before you commit to a channel mix.
Which Combination to Pick
Most outpatient practices end up with a two-channel mix: portal plus SMS, or portal plus tablet, with email as a soft fallback. The pick usually tracks the age profile of the panel and whether the practice already runs a portal with real login numbers. For a starting picture of the intake side, the complete guide to FHIR intake forms for outpatient practices covers the broader design, and the top 6 SDC form builders for outpatient mental health practices is a natural next read.