Remind is now part of the ParentSquare family! See the announcement for details
Remind is now part of the ParentSquare family! Learn more
Resources
Hub

Guide to Title I and Remind

Resources

Remind is used in nearly 90 percent of Title I schools in the United States, including Pathways in Technology Early College High School in Brooklyn, New York. As the parent coordinator at P-TECH, Curtis Smith started using Remind as a way to reach out to families—and ended up bringing Title I funding back to the school.

This short guide outlines how Remind Hub can help you meet four key program requirements for Title I funding. We’ve kept it short and sweet, but you’ll find links to the relevant policies, specific ideas for supporting each one with Remind, and a few other tips for making the most of your plan.

As for how Curtis used Remind to help P-TECH qualify for Title I funding again? We’ll get to that, too.

Reaching parents with Remind: “Teachers know that if you backpack something, it never gets home,” says Curtis Smith, the parent coordinator at P-TECH.

***

1. Lower barriers to participation

[.c-grey-box]Title I, Part A, Sec. 111 (d)(2): Lower barriers to greater participation by parents in school planning, review, and improvement experienced.[.c-grey-box]

It’s always been easy for parents to opt in to classes on Remind—but Remind Hub makes it even easier by letting you automatically create accounts for parents in your organization. There are a few different rostering options, based on your organization’s size and needs, but they all make it easier for parents to get set up and start receiving school updates.

Parents can choose to receive Remind notifications via the channel they use most—text message, app notifications, or email. Along with being more convenient for many, text notifications provide parents with a low-lift way to communicate without a smartphone or regular internet access at home.

***

2. Reach English language learners

[.c-grey-box]Title I, Part A, Sec. 112 (g)(4): Implement an effective means of outreach to parents of limited English proficient students to inform the parents regarding how the parents can be involved.[.c-grey-box]

Every message on Remind can be translated into over 85 languages before it's sent. If you don’t see a language that’s used widely in your community, contact our team and we’ll see what we can do to include it.

The Remind app is also currently available in six languages: Spanish, French, German, Portuguese (Brazilian), Chinese (Simplified), and English. If a parent’s phone is set to one of these languages, the language of their app will be automatically updated.

***

3. Support and evaluate parental involvement policies

[.c-grey-box]Title I, Part A, Sec. 118 (a)(2)(e): Conduct, with the involvement of parents, an annual evaluation of the content and effectiveness of the parental involvement policy in improving the academic quality of the schools.[.c-grey-box]

Each message you send on Remind includes a delivery summary that helps you track if parents are engaging with your content (and make adjustments as needed).

Remind Hub also includes dashboards that give you a bird’s-eye view of parent involvement across your school. For evaluating parent involvement, we recommend starting with your community engagement statistics: These include a breakdown of message volume and parent activity over time that you can use to benchmark and assess engagement.

(Don’t have Hub but curious about engagement at your school? Find your school’s Remind engagement page, which gives you a peek at these statistics over the past six months.)

***

4. Foster parental involvement

[.c-grey-box]Title I, Part A, Sec. 118 (e)(3): Provide materials and training to help parents to work with their children to improve their children's achievement, such as literacy training and using technology, as appropriate, to foster parental involvement.[.c-grey-box]

Remind Hub includes organization-wide messaging, so you can send schoolwide updates about resources like parent education classes and training opportunities.

You can also send flyers, handouts, and other materials directly to parents’ phones. If your school relies on an LMS like Schoology or Canvas for sharing resources, LMS integration is available with some Remind Hub plans as well.

***

About getting that funding...

After P-TECH didn’t collect enough lunch forms one year to qualify for the Title I funding needed to run its summer programs, Curtis decided to use Remind to get the word out.

“Every message I sent home was just ‘Lunch forms, lunch forms, lunch forms!’” he said. “Parents got tired of me, but I had to get that instilled. And the great thing is that I could send them the link to the lunch form, so if they filled it out on the computer I didn’t have to do any paperwork at all.”

It worked. With the funding the school got back that year, P-TECH was able to staff its summer programs—and upgrade to Remind Hub for the entire community.

Read more about how Curtis uses Remind at a Title I school.

***

Questions?

If you have Remind Hub, don’t hesitate to contact our Support team at support@remind.com for priority support. We’re here to help!

And if you’re interested in learning more about using Remind Hub for your Title I school, you can find more information or contact our sales team here.

For Title I-eligible school and district administrators

Support family engagement across your entire organization with the Remind Hub.

tag * ppcUrlCookiePart1 and ppcUrlCookiePart2 must be called, see bottom of script * update ppcUrlCookiePart2 and ppcUrlCookiePart2 to match your querystring and form field names * */ //Leave this as true to always use querystring values if they exist, if no querystring will attempt to get cookie values var ppcUseLatestValues = true; //set this to false to use cookie values if they exist (if false, will not check querystring first). //function to grab params from cookie function getCookie(param_name) { var i, x, y, cookie = document.cookie.split(";"); for (i = 0; i < cookie.length; i++) { x = cookie[i].substr(0, cookie[i].indexOf("=")); y = cookie[i].substr(cookie[i].indexOf("=") + 1); x = x.replace(/^\s+|\s+$/g, ""); if (x == param_name) { return unescape(y); } } } //function to create cookie function setCookie(param_name, value, exdays) { var exdate = new Date(); exdate.setDate(exdate.getDate() + exdays); //CHANGE DOMAIN BELOW TO MATCH SITE var c_value = escape(value) + ((exdays == null) ? "" : "; domain=remind.com; path=/; expires=" + exdate.toUTCString()); document.cookie = param_name + "=" + c_value; } //function to check if cookie exists and, if so, run the setCookie function function checkCookie(param_name, param_url_name) { var param_value = getCookie(param_name); if ((param_value != null && param_value != "" && param_value != "undefined") && ppcUseLatestValues == false) { //this means the param name/value pair exists - and we don't want to use latest } else { //this means the param name/value pair does not exist - so create it //grab values from URL var pageURL = window.location.search.substring(1); var URLVariables = pageURL.split('&'); for (var i = 0; i < URLVariables.length; i++) { var parameterName = URLVariables[i].split('='); if (parameterName[0] == param_url_name) { //filter out "#" in case that is in the last URL param param_value = parameterName[1].split("#")[0]; } } if (param_value != "undefined" && param_value != "" && param_value != null) { //create cookie setCookie(param_name, param_value, 365); } } } //function to setup the parameters and save the cookie values function ppcUrlCookiePart1() { //setup list/array of parameters desired. names on right should match querystring names var param_names = new Array( 'ppcSource;utm_source', 'ppcMedium;utm_medium', 'ppcCampaign;utm_campaign', 'ppcAdGroup;utm_adgroup', 'ppcKeyword;utm_term', 'ppcContent;utm_content' ); //loop through all params and create cookie for (i = 0; i < param_names.length; i++) { var param_object = param_names[i].split(";");//split out the cookie name and url name var param_name = param_object[0]; var param_url_name = param_object[1]; //start the cookie creation checkCookie(param_name, param_url_name); } } //function to grab cookie params function mGetCookie(param_name) { var i, x, y, cookie = document.cookie.split(";"); for (i = 0; i < cookie.length; i++) { x = cookie[i].substr(0, cookie[i].indexOf("=")); y = cookie[i].substr(cookie[i].indexOf("=") + 1); x = x.replace(/^\s+|\s+$/g, ""); if (x == param_name) { return unescape(y); } } } //function to check if cookie exists and, if so, fill out the corresponding form fields function mCheckCookie(param_name, param_field_name) { var param_value = mGetCookie(param_name); if (param_value != null && param_value != "" && param_value != "undefined") { try { var obj1 = document.getElementsByName(param_field_name); obj1[0].value = param_value; return true; } catch (err) { return false; } } return false; } //function to setup parameters and begin cookie value insertion into marketo form function ppcUrlCookiePart2() { //setup list/array of parameters desired. names on right should match hidden form field names var param_names = new Array( 'ppcSource;utm_source__c', 'ppcMedium;utm_medium__c', 'ppcCampaign;utm_campaign__c', 'ppcAdGroup;utm_adgroup__c', 'ppcKeyword;utm_term__c', 'ppcContent;utm_content__c' ); //loop through all params and create cookie for (i = 0; i < param_names.length; i++) { var param_object = param_names[i].split(";");//split out the cookie name and url name var param_name = param_object[0]; var param_field_name = param_object[1]; //start the cookie creation mCheckCookie(param_name, param_field_name); } } //ppcUrlCookiePart1 will grab values from the querystring and save them in cookies ppcUrlCookiePart1(); //ppcUrlCookiePart2 will retrive values from the cookies and populate the hidden form fields - should be in the onload try { //attempt for Marketo form MktoForms2.whenReady(function (form){ ppcUrlCookiePart2(); }); } catch (err) { //if error on Marketo form, try loading for regular form. ppcUrlCookiePart2(); }