mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-24 08:16:51 -04:00
revised content
This commit is contained in:
@@ -7,9 +7,7 @@
|
||||
<h4 class="usa-card__heading text-center">{{item.card_heading}}</h4>
|
||||
</div>
|
||||
<div class="usa-card__media usa-card__media--inset">
|
||||
<div class="usa-card__img">
|
||||
<img src="{{item.image_src}}" alt="{{item.card_heading}} image" />
|
||||
</div>
|
||||
<img class="guidance_card_img" src="{{item.image_src}}" alt="{{item.card_heading}} image" />
|
||||
</div>
|
||||
<div class="usa-card__body">
|
||||
<p class="text-center">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<ol class="usa-breadcrumb__list">
|
||||
<li class="usa-breadcrumb__list-item">
|
||||
<span class="usa-breadcrumb__label"><a href="{{ url_for('.guidance') }}"
|
||||
class="usa-link navigation-organization-link">Guidance:</a></span>
|
||||
class="usa-link navigation-organization-link">Guidance</a></span>
|
||||
</li>
|
||||
{% if title %}
|
||||
<li class="usa-breadcrumb__list-item">
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
action or influence behavior. Therefore, when starting to plan your texting campaign, it’s important to start with
|
||||
the end in mind.
|
||||
</p>
|
||||
<div class="usa-summary-box" role="region" aria-labelledby="summary-box-establish-clear-goals">
|
||||
<div class="usa-summary-box maxw-tablet" role="region" aria-labelledby="summary-box-establish-clear-goals">
|
||||
<div class="usa-summary-box__body">
|
||||
<h4 class="usa-summary-box__heading" id="summary-box-establish-clear-goals">
|
||||
To establish clear goals, start by answering the following questions:
|
||||
@@ -34,66 +34,87 @@
|
||||
<p>Dept. of Human Services: We believe your EBT card may have been used by someone else. Please call the number on the
|
||||
back of your card (888-123-5555) to cancel and get a new one. If you need a new card immediately, please visit your
|
||||
local office.</p>
|
||||
<div class="grid-row grid-gap">
|
||||
<div class="grid-row grid-gap-3">
|
||||
<div class="tablet:grid-col">
|
||||
<p class="border-top-1px border-base-light padding-top-1 margin-top-0"><b>Use texting to</b> share timely information, provide critical status updates, or remind someone to do something.</p>
|
||||
{% set list_item_dos = [
|
||||
{
|
||||
"list_content": "Your application is due on…",
|
||||
},
|
||||
{
|
||||
"list_content": "We need more information from you to process your application for…",
|
||||
},
|
||||
{
|
||||
"list_content": "We will be calling you about…at…",
|
||||
},
|
||||
{
|
||||
"list_content": "We will be calling you about…at…",
|
||||
},
|
||||
] %}
|
||||
<p class="margin-bottom-2">Examples:</p>
|
||||
<ul class="usa-icon-list">
|
||||
{% for item in list_item_dos %}
|
||||
<li class="usa-icon-list__item">
|
||||
<img src="{{ asset_url('img/usa-icons/check_circle.svg') }}" role="img" alt="check circle"/>
|
||||
<div class="usa-icon-list__content">
|
||||
{{item.list_content}}
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="do-dont">
|
||||
<div class="do-dont__do">
|
||||
<h3 class="do-dont__heading"><a id="what-to-do" class="usa-anchor"></a>
|
||||
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img">
|
||||
<use xlink:href="{{ url_for('static', filename='img/sprite.svg') }}#check_circle"></use>
|
||||
</svg>
|
||||
What to do
|
||||
</h3>
|
||||
<div class="do-dont__content">
|
||||
<p><b>Use texting to</b> share timely
|
||||
information, provide critical status updates, or remind someone to do something.</p>
|
||||
<p class="margin-bottom-2">Examples:</p>
|
||||
|
||||
{% set list_item_dos = [
|
||||
{
|
||||
"list_content": "Your application is due on…",
|
||||
},
|
||||
{
|
||||
"list_content": "We need more information from you to process your application for…",
|
||||
},
|
||||
{
|
||||
"list_content": "We will be calling you about…at…",
|
||||
},
|
||||
{
|
||||
"list_content": "We will be calling you about…at…",
|
||||
},
|
||||
] %}
|
||||
<ul>
|
||||
{% for item in list_item_dos %}
|
||||
<li>
|
||||
{{item.list_content}}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tablet:grid-col">
|
||||
<p class="border-top-1px border-base-light padding-top-1 margin-top-0">Texting is <b>not great for</b> long, detailed instructions or frequent reminders that may be ignored.
|
||||
</p>
|
||||
<p class="margin-bottom-2">Examples:</p>
|
||||
{% set list_item_donts = [
|
||||
{
|
||||
"list_content": "Your rights and responsibilities",
|
||||
},
|
||||
{
|
||||
"list_content": "How to complete your application",
|
||||
},
|
||||
{
|
||||
"list_content": "Weekly reminder not to share your account information",
|
||||
},
|
||||
] %}
|
||||
<ul class="usa-icon-list usa-icon-list--primary">
|
||||
{% for item in list_item_donts %}
|
||||
<li class="usa-icon-list__item">
|
||||
<img src="{{ asset_url('img/usa-icons/cancel.svg') }}" role="img" alt="cancel circle"/>
|
||||
<div class="usa-icon-list__content">{{item.list_content}}</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="do-dont">
|
||||
<div class="do-dont__dont">
|
||||
<h3 class="do-dont__heading"><a id="what-not-to-do" class="usa-anchor"></a>
|
||||
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img">
|
||||
<use xlink:href="{{ url_for('static', filename='img/sprite.svg') }}#cancel"></use>
|
||||
</svg> What not to do
|
||||
</h3>
|
||||
<div class="do-dont__content">
|
||||
<p>Texting is <b>not great for</b> long,
|
||||
detailed instructions or frequent reminders that may be ignored.
|
||||
</p>
|
||||
<p class="margin-bottom-2">Examples:</p>
|
||||
{% set list_item_donts = [
|
||||
{
|
||||
"list_content": "Your rights and responsibilities",
|
||||
},
|
||||
{
|
||||
"list_content": "How to complete your application",
|
||||
},
|
||||
{
|
||||
"list_content": "Weekly reminder not to share your account information",
|
||||
},
|
||||
] %}
|
||||
<ul>
|
||||
{% for item in list_item_donts %}
|
||||
<li>
|
||||
{{item.list_content}}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p>Your program may already be communicating with your audience through methods like mailed notices and phone calls. Think of text messages as complementary to your existing communications. Review how well you are currently reaching your audience. Are there methods or gaps that could be supplemented with a text message?
|
||||
</p>
|
||||
<p>
|
||||
The Department of Veterans Affairs provides a <a
|
||||
The Department of Veterans Affairs provides a <a class="use-link usa-link--external"
|
||||
href="https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/products/va-notify/notification-guide.md#vanotify-notification-guide"
|
||||
target="_blank">helpful
|
||||
flow-chart</a> that can help you decide if a text message is needed
|
||||
@@ -105,15 +126,9 @@
|
||||
result
|
||||
of implementing text messaging at your agency. For example:
|
||||
</p>
|
||||
|
||||
<ul list list-bullet>
|
||||
<li>
|
||||
We believe that texting [specific group of people] when [this happens or on this cadence] to inform/alert them
|
||||
about
|
||||
[subject] will result in [desired action].
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<p class="site-note bg-base-lighter"> We believe that texting [specific group of people] when [this happens or on this
|
||||
cadence] to
|
||||
inform/alert them about [subject] will result in [desired action].</p>
|
||||
<p>
|
||||
Review your drafted hypothesis with your team to make sure everyone is aligned on your desired goals. A clear and
|
||||
concise hypothesis can help you decide how to <a href="../guidance/write-for-action">write text message content
|
||||
@@ -153,14 +168,19 @@
|
||||
the results you want?",
|
||||
},
|
||||
] %}
|
||||
<ul class="usa-icon-list usa-icon-list--primary padding-top-2">
|
||||
{% for item in list_performance_dos %}
|
||||
<li class="usa-icon-list__item">
|
||||
<img src="{{ asset_url('img/usa-icons/check_circle.svg') }}" role="img" alt="check circle"/>
|
||||
<div class="usa-icon-list__content">{{item.list_content |safe}}</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<div class="usa-summary-box maxw-tablet" role="region" aria-labelledby="summary-box-establish-clear-goals">
|
||||
<div class="usa-summary-box__body">
|
||||
<div class="usa-summary-box__text">
|
||||
<ul class="usa-list margin-top-0">
|
||||
{% for item in list_performance_dos %}
|
||||
<li>
|
||||
{{item.list_content |safe}}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
@@ -103,9 +103,9 @@
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-center font-sans-xs">For example, we’ve seen Medicaid programs use trust-markers in renewal texts</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p class="text-center">For example, we’ve seen Medicaid programs use trust-markers in renewal texts –</p>
|
||||
|
||||
<h3>Provide helpful auto-responses</h3>
|
||||
<ul class="usa-card-group flex-1 flex-wrap padding-top-2">
|
||||
@@ -144,19 +144,19 @@
|
||||
{% set card_header = "Harness trusted communication channels" %}
|
||||
{% set card_contents = [
|
||||
{
|
||||
"image_src": asset_url('img/usa-icons/close.svg'),
|
||||
"image_src": asset_url('images/world-wide-web.svg'),
|
||||
"card_heading": "Websites",
|
||||
"p_text": "Post banner alerts about texting on your agency website, and link to a press release for more information.
|
||||
Publish apublic texting privacy policy.",
|
||||
},
|
||||
{
|
||||
"image_src": asset_url('img/usa-icons/close.svg'),
|
||||
"image_src": asset_url('images/community-2.svg'),
|
||||
"card_heading": "Community organizations",
|
||||
"p_text": "Alert trusted community-based organizations that texts are coming and what they look like. Equip them with
|
||||
fliers, posters, and talking points to spread the word",
|
||||
},
|
||||
{
|
||||
"image_src": asset_url('img/usa-icons/close.svg'),
|
||||
"image_src": asset_url('images/headset.svg'),
|
||||
"card_heading": "IVR / Call Centers",
|
||||
"p_text": "Consider adding hold message announcements about your texting initiative to further get the word out.",
|
||||
},
|
||||
@@ -168,14 +168,14 @@
|
||||
{% set card_header = "Prepare your team" %}
|
||||
{% set card_contents = [
|
||||
{
|
||||
"image_src": asset_url('img/usa-icons/close.svg'),
|
||||
"image_src": asset_url('images/grouping.svg'),
|
||||
"card_heading": "Staff",
|
||||
"p_text": "Give all staff a heads-up about texts before and when they are sent.
|
||||
Share talking points on what texts you’re sending, when you’ll start to send them, the phone number they are coming
|
||||
from, and where staff can escalate any issues.",
|
||||
},
|
||||
{
|
||||
"image_src": asset_url('img/usa-icons/close.svg'),
|
||||
"image_src": asset_url('images/project-management.svg'),
|
||||
"card_heading": "Case management systems",
|
||||
"p_text": "When it makes sense, include information about texts being sent to specific clients on individual splash
|
||||
pages or
|
||||
|
||||
@@ -5,7 +5,6 @@ Guidance
|
||||
{% endblock %}
|
||||
|
||||
{% block content_column_content %}
|
||||
{% with title=page_title %}{% include "components/guidance/nav_breadcrumb.html" %}{% endwith %}
|
||||
|
||||
<section class="usa-prose">
|
||||
<h1>Guidance</h1>
|
||||
@@ -18,32 +17,32 @@ Guidance
|
||||
{% set card_header = "Key elements of a texting campaign" %}
|
||||
{% set card_contents = [
|
||||
{
|
||||
"image_src": asset_url('img/usa-icons/close.svg'),
|
||||
"image_src": asset_url('images/goal.svg'),
|
||||
"card_heading": "Establish clear goals",
|
||||
"p_text": "Start with a singular purpose. Make explicit what you want to achieve.",
|
||||
},
|
||||
{
|
||||
"image_src": asset_url('img/usa-icons/close.svg'),
|
||||
"image_src": asset_url('images/compliant.svg'),
|
||||
"card_heading": "Follow rules & regulations",
|
||||
"p_text": "Understand what is required when texting the public.",
|
||||
},
|
||||
{
|
||||
"image_src": asset_url('img/usa-icons/close.svg'),
|
||||
"image_src": asset_url('images/handshake.svg'),
|
||||
"card_heading": "Establish trust",
|
||||
"p_text": "Help your audience anticipate and welcome your texts.",
|
||||
},
|
||||
{
|
||||
"image_src": asset_url('img/usa-icons/close.svg'),
|
||||
"image_src": asset_url('images/runer-silhouette-running-fast.svg'),
|
||||
"card_heading": "Write texts that provoke action",
|
||||
"p_text": "Help your audience know what to do with the information you send.",
|
||||
},
|
||||
{
|
||||
"image_src": asset_url('img/usa-icons/close.svg'),
|
||||
"image_src": asset_url('images/language.svg'),
|
||||
"card_heading": "Send texts in multiple languages",
|
||||
"p_text": "What to know as you plan translated texts.",
|
||||
},
|
||||
{
|
||||
"image_src": asset_url('img/usa-icons/close.svg'),
|
||||
"image_src": asset_url('images/chart.svg'),
|
||||
"card_heading": "Measure performance with benchmarking",
|
||||
"p_text": "Learn how effective your texting program can be.",
|
||||
}
|
||||
|
||||
@@ -23,17 +23,13 @@
|
||||
</p>
|
||||
{% set links = [
|
||||
{
|
||||
"url_link": "https://www.fcc.gov/sites/default/files/tcpa-rules.pdf",
|
||||
"url_text":"Telephone Consumer Protection Act (TCPA)",
|
||||
"p_text": 'The <a href="https://www.fcc.gov/sites/default/files/tcpa-rules.pdf" target="_blank">Telephone Consumer
|
||||
"p_text": 'The <a class="use-link usa-link--external" href="https://www.fcc.gov/sites/default/files/tcpa-rules.pdf"
|
||||
target="_blank">Telephone Consumer
|
||||
Protection Act (TCPA)</a> (47 USC § 227) is the federal law that impacts how organizations are allowed to communicate
|
||||
in bulk with the public via telephone (including text message or SMS).'
|
||||
},
|
||||
{
|
||||
"url_link":
|
||||
"https://www.federalregister.gov/documents/2021/02/12/2020-29016/government-and-government-contractor-calls-under-the-telephone-consumer-protection-act-of-1991",
|
||||
"url_text":"Telephone Consumer Protection Act of 1991",
|
||||
"p_text": 'The <a
|
||||
"p_text": 'The <a class="use-link usa-link--external"
|
||||
href="https://www.federalregister.gov/documents/2021/02/12/2020-29016/government-and-government-contractor-calls-under-the-telephone-consumer-protection-act-of-1991"
|
||||
target="_blank">FCC has ruled</a> that <b>Federal</b> and <b>State</b> programs are exempt from the TCPA and can send
|
||||
text messages to the public without consent if conducting official business. Without explicit mention in the ruling,
|
||||
@@ -45,7 +41,9 @@
|
||||
"url_text":"Download and share our overview of the TCPA with your legal counsel",
|
||||
"p_text": 'It provides a baseline
|
||||
interpretation to aid your legal counsel in getting up to speed with what might be needed for your program or use case.
|
||||
For additional questions about the enforcement of the TCPA, you can watch <a href="https://www.performance.gov/cx/life-experiences/facing-a-financial-shock/outputs/fcc-training/" target="_blank">a recorded training on public
|
||||
For additional questions about the enforcement of the TCPA, you can watch <a class="use-link usa-link--external"
|
||||
href="https://www.performance.gov/cx/life-experiences/facing-a-financial-shock/outputs/fcc-training/"
|
||||
target="_blank">a recorded training on public
|
||||
benefits texting</a> provided by the FCC.'
|
||||
},
|
||||
] %}
|
||||
@@ -54,9 +52,11 @@
|
||||
{% for item in links %}
|
||||
<li class="usa-collection__item">
|
||||
<div class="usa-collection__body">
|
||||
{% if item.url_text %}
|
||||
<h4 class="usa-collection__heading">
|
||||
<a class="usa-link guidance" href="{{ item.url_link }}" target="_blank">{{ item.url_text }}</a>
|
||||
<a class="use-link usa-link--external" href="{{ item.url_link }}" target="_blank">{{ item.url_text }}</a>
|
||||
</h4>
|
||||
{% endif %}
|
||||
<p class="usa-collection__description">
|
||||
{{item.p_text |safe}}
|
||||
</p>
|
||||
@@ -70,7 +70,11 @@
|
||||
</p>
|
||||
|
||||
<p>
|
||||
In the US, no matter where texts are coming from, a recipient has the right to revoke consent at any time through any reasonable means. For example, a text recipient can always opt out of receiving text messages from a phone number by responding “STOP”, “QUIT”, or <a href="https://docs.aws.amazon.com/pinpoint/latest/userguide/channels-sms-limitations-opt-out.html#settings-sms-self-opt-out-terms" target="_blank">one of several other keywords</a>.
|
||||
In the US, no matter where texts are coming from, a recipient has the right to revoke consent at any time through any
|
||||
reasonable means. For example, a text recipient can always opt out of receiving text messages from a phone number by
|
||||
responding “STOP”, “QUIT”, or <a class="usa-link usa-link--external"
|
||||
href="https://docs.aws.amazon.com/pinpoint/latest/userguide/channels-sms-limitations-opt-out.html#settings-sms-self-opt-out-terms"
|
||||
target="_blank">one of several other keywords</a>.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
@@ -87,7 +91,10 @@
|
||||
</p>
|
||||
<h3>Assess risk</h3>
|
||||
<p>
|
||||
Consider the risks if someone who is not the intended recipient receives the text message. Establish an internal process to keep your phone number list up-to-date. The FCC offers a <a href="https://www.fcc.gov/reassigned-numbers-database" target="_blank" rel="Reassigned Numbers Database">Reassigned Numbers Database</a> to identify phone numbers that may have been reassigned since your agency obtained them.
|
||||
Consider the risks if someone who is not the intended recipient receives the text message. Establish an internal process
|
||||
to keep your phone number list up-to-date. The FCC offers a <a class="use-link usa-link--external"
|
||||
href="https://www.fcc.gov/reassigned-numbers-database" target="_blank" rel="Reassigned Numbers Database">Reassigned
|
||||
Numbers Database</a> to identify phone numbers that may have been reassigned since your agency obtained them.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user