2016-11-22 17:15:31 +00:00
{% extends "fullwidth_template.html" %}
2022-12-14 11:50:51 -05:00
{% from "components/uk_components/button/macro.njk" import govukButton %}
2015-11-25 16:21:28 +00:00
2017-11-14 17:25:32 +00:00
{% block meta %}
2023-05-08 10:49:30 -04:00
< meta name = "description" content = "U.S. Notify lets you send text messages to your users. Try it now if you work in federal, state, or local government." >
2017-11-14 17:25:32 +00:00
{% endblock %}
2019-10-11 16:21:05 +01:00
{% block pageTitle %}
2022-12-06 11:03:47 -05:00
U.S. Notify
2015-11-25 16:21:28 +00:00
{% endblock %}
2019-10-11 16:44:17 +01:00
{% block content %}
2015-11-25 16:21:28 +00:00
2023-06-06 15:28:24 -04:00
< section aria-label = "Introduction" >
< div class = "grid-container usa-section usa-section--dark padding-top-4 padding-bottom-5" >
< div class = "grid-row grid-gap display-flex flex-align-center" >
< div class = "tablet:grid-col-7" >
< h1 class = "font-serif-2xl usa-hero__heading" > Send text messages to your users< / h1 >
< p class = "font-sans-lg margin-bottom-5" > Try U.S. Notify now if you work in federal, state, or local government.< / p >
< div class = "usa-button-group" >
< a class = "usa-button usa-button--big" href = "{{ url_for('main.register' )}}" > Create an account< / a >
or < a class = "usa__link margin-x-1" href = "{{ url_for('.sign_in' )}}" > sign in< / a > if you’ ve used
it before
< / div >
< / div >
< div class = "tablet:grid-col-4 grid-offset-1" >
< img src = "{{ asset_url('images/product/proposition-illustration.png') }}"
alt="An illustration of notifications to a phone, a laptop, and a letter.">
< / div >
< / div >
< / div >
< / section >
< section class = "grid-container usa-section" >
< div class = "grid-row grid-gap" >
< div class = "tablet:grid-col-5 usa-prose" >
< h2 class = "font-heading-xl margin-top-0 margin-bottom-3" >
Control your content
< / h2 >
< p > You do not need any technical knowledge to create message templates.< / p >
< / div >
< div class = "tablet:grid-col-6 grid-offset-1" >
< img src = "{{ asset_url('images/product/01-templates-no-chrome.svg') }}"
alt="Example screenshot of adding a new text message template">
< / div >
< / div >
< / section >
< section class = "grid-container usa-section" >
< div class = "grid-row grid-gap" >
< div class = "tablet:grid-col-5 usa-prose" >
< h2 class = "font-heading-xl margin-top-0 margin-bottom-3" >
See how your messages perform
< / h2 >
< p > Track how many messages you’ ve sent and find out which ones are not being delivered.< / p >
< / div >
< div class = "tablet:grid-col-6 grid-offset-1" >
< img src = "{{ asset_url('images/product/02-reporting-no-chrome.svg') }}"
alt="A screenshot of U.S. Notify showing counts of emails and text messages sent">
< / div >
< / div >
< / section >
< section class = "grid-container usa-section border-top border-base-lighter" >
< div class = "grid-row grid-gap" >
< h2 class = "font-heading-xl margin-top-0 margin-bottom-3 bold" >
Send messages manually or automatically
< / h2 >
< / div >
< div class = "grid-row grid-gap" >
< div class = "tablet:grid-col-6 usa-prose" >
< p > Upload a spreadsheet of phone numbers and Notify sends the messages.< / p >
< img src = "{{ asset_url('images/product/03-spreadsheet-no-chrome.svg') }}"
alt="A screenshot of a spreadsheet with columns for email address, name and color">
< / div >
< div class = "tablet:grid-col-6 usa-prose" >
< p >
Integrate the U.S. Notify API with your web application or
back office system.
< / p >
< img src = "{{ asset_url('images/product/04-api-no-chrome.svg') }}"
alt="A screenshot of some computer code with a notify.send_email function">
< / div >
< / div >
< / section >
< section id = "whos-using-notify" class = "grid-container usa-section border-top border-base-lighter padding-top-4 padding-bottom-5" >
< div class = "grid-row grid-gap flex-column" >
< h2 class = "font-heading-xl display-flex flex-justify-center margin-top-0 bold" >
Who’ s using U.S. Notify
< / h2 >
< p class = "display-flex flex-justify-center font-body-sm margin-bottom-3" >
See the
< a class = "usa-link margin-left-05" href = "{{ url_for('main.performance') }}" > list of services and
organizations< / a > .
< / p >
< / div >
< div class = "grid-row" >
< div class = "tablet:grid-col-6 display-flex flex-justify-center flex-align-center flex-column" >
< span class = "usa-sr-only" > There are< / span >
< div class = "large-number" > {{ counts.organisations|format_thousands }}< / div >
< p class = "font-body-lg" > Organizations< / p >
< / div >
< div class = "tablet:grid-col-6 display-flex flex-justify-center flex-align-center flex-column" >
< span class = "usa-sr-only" > and< / span >
< div class = "large-number" > {{ counts.services|format_thousands }}< / div >
< p class = "font-body-lg" > Services< / p >
< span class = "usa-sr-only" > using Notify.< / span >
< / div >
< / div >
< / section >
< section class = "grid-container usa-section border-top border-base-lighter usa-prose" >
< h2 class = "font-heading-xl margin-top-0 margin-bottom-3" >
The team
< / h2 >
< p class = "usa-body" >
U.S. Notify is built and maintained by the Public Benefits Studio, within the General Services Administration's
Technology Transformation Services.
< / p >
< p class = "usa-body" >
< a class = "usa-link" href = "{{ url_for('main.support') }}" > Contact us< / a > if you have a
question or want
to give feedback.
< / p >
< / section >
<!-- <div class="product - page - intro"></div> -->
<!-- <div class="product - page - intro - wrapper" data - module="homepage">
2017-01-19 14:52:54 +00:00
< nav class = "breadcrumbs breadcrumbs--inverse" aria-label = "Breadcrumbs" >
2022-12-15 10:00:54 -05:00
2017-01-19 14:52:54 +00:00
< / nav >
2020-02-19 11:57:15 +00:00
< div class = "govuk-grid-row" >
2020-02-19 12:36:02 +00:00
< div class = "govuk-grid-column-two-thirds" >
2016-11-22 17:53:09 +00:00
< h1 >
2023-05-08 10:49:30 -04:00
Send text messages to your users
2016-11-22 17:53:09 +00:00
< / h1 >
2023-06-06 15:28:24 -04:00
< p >
2023-05-08 10:49:30 -04:00
Try U.S. Notify now if you work in federal, state, or local government.
2016-11-22 17:53:09 +00:00
< / p >
< div class = "button-container" >
2020-02-06 13:36:17 +00:00
{{ govukButton({
"element": "a",
"text": "Create an account",
"classes": "product-page-button button-container__button govuk-!-margin-right-3",
"href": url_for('main.register' )
}) }}
2019-12-06 07:53:46 +00:00
or < a class = "govuk-link govuk-link--no-visited-state" href = "{{ url_for('.sign_in' )}}" > sign in< / a > if you’ ve used
2016-11-22 17:53:09 +00:00
it before
< / div >
< / div >
2022-08-31 08:47:18 -04:00
< div class = "govuk-grid-column-one-third" >
< img
src="{{ asset_url('images/product/proposition-illustration.png') }}"
alt="An illustration of notifications to a phone, a laptop, and a letter.">
< / div >
2016-11-22 17:53:09 +00:00
< / div >
< / div >
< / div >
< div class = "product-page-section" >
2020-02-19 11:57:15 +00:00
< div class = "govuk-grid-row" >
2020-02-19 14:37:28 +00:00
< div class = "govuk-grid-column-one-half" >
2016-11-23 10:58:12 +00:00
< h2 >
2016-11-30 13:52:12 +00:00
Control your content
2016-11-23 10:58:12 +00:00
< / h2 >
2023-06-06 15:28:24 -04:00
< p >
You do not need any technical knowledge to create message templates.
2016-11-23 10:58:12 +00:00
< / p >
< / div >
2020-02-19 14:37:28 +00:00
< div class = "govuk-grid-column-one-half" >
2022-08-31 08:47:18 -04:00
< img
2023-06-06 15:28:24 -04:00
src="{{ asset_url('images/product/01-templates.svg') }}"
2022-08-31 08:47:18 -04:00
alt="Example screenshot of adding a new text message template">
2016-11-23 10:58:12 +00:00
< / div >
< / div >
2016-11-22 17:53:09 +00:00
< / div >
2016-11-23 10:58:12 +00:00
< div class = "product-page-section" >
2020-02-19 11:57:15 +00:00
< div class = "govuk-grid-row" >
2020-02-19 14:37:28 +00:00
< div class = "govuk-grid-column-one-half" >
2016-11-30 13:52:12 +00:00
< h2 >
See how your messages perform
< / h2 >
2023-06-06 15:28:24 -04:00
< p >
2016-11-30 13:52:12 +00:00
Track how many messages you’ ve sent and
2019-09-13 12:45:12 +01:00
find out which ones are not being delivered.
2016-11-30 13:52:12 +00:00
< / p >
2016-11-23 10:58:12 +00:00
< / div >
2020-02-19 14:37:28 +00:00
< div class = "govuk-grid-column-one-half" >
2016-12-07 17:00:53 +00:00
< img
2023-06-06 15:28:24 -04:00
src="{{ asset_url('images/product/02-reporting.svg') }}"
2022-12-06 11:03:47 -05:00
alt="A screenshot of U.S. Notify showing counts of emails and text messages sent"
2016-12-07 17:00:53 +00:00
>
2016-11-23 10:58:12 +00:00
< / div >
< / div >
< / div >
2016-11-28 15:39:44 +00:00
< div class = "product-page-section" >
2016-11-30 13:52:12 +00:00
< h2 class = "with-keyline" >
Send messages manually or automatically
2016-11-23 10:58:12 +00:00
< / h2 >
2020-02-19 11:57:15 +00:00
< div class = "govuk-grid-row" >
2020-02-19 14:37:28 +00:00
< div class = "govuk-grid-column-one-half" >
2023-06-06 15:28:24 -04:00
< p >
2023-05-08 10:49:30 -04:00
Upload a spreadsheet of phone numbers and Notify sends the messages.
2016-11-23 10:58:12 +00:00
< / p >
2016-12-07 17:00:53 +00:00
< img
2023-06-06 15:28:24 -04:00
src="{{ asset_url('images/product/03-spreadsheet.svg') }}"
2022-12-20 09:44:33 -05:00
alt="A screenshot of a spreadsheet with columns for email address, name and color"
2016-12-07 17:00:53 +00:00
>
2016-11-23 10:58:12 +00:00
< / div >
2020-02-19 14:37:28 +00:00
< div class = "govuk-grid-column-one-half" >
2023-06-06 15:28:24 -04:00
< p >
2022-12-06 11:03:47 -05:00
Integrate the U.S. Notify API with your web application or
2016-11-23 10:58:12 +00:00
back office system.
< / p >
2016-12-07 17:00:53 +00:00
< img
2023-06-06 15:28:24 -04:00
src="{{ asset_url('images/product/04-api.svg') }}"
2016-12-07 17:00:53 +00:00
alt="A screenshot of some computer code with a notify.send_email function"
>
2016-11-23 10:58:12 +00:00
< / div >
< / div >
< / div >
2016-12-19 12:12:55 +00:00
< div class = "product-page-section" >
2019-04-10 17:20:51 +01:00
< div class = "with-keyline bottom-gutter-2" id = "whos-using-notify" >
2022-12-06 11:03:47 -05:00
< h2 > Who’ s using U.S. Notify< / h2 >
2020-02-19 11:57:15 +00:00
< div class = "govuk-grid-row bottom-gutter" >
2020-02-19 14:37:28 +00:00
< div class = "govuk-grid-column-one-half" >
2021-03-12 17:12:47 +00:00
< span class = "govuk-visually-hidden" > There are< / span >
2019-07-08 12:00:40 +01:00
< div class = "product-page-big-number" > {{ counts.organisations|format_thousands }}< / div >
2022-11-04 12:35:40 -04:00
< span > organizations< / span >
2016-12-19 12:12:55 +00:00
< / div >
2021-03-11 13:30:38 +00:00
< div class = "govuk-grid-column-one-half" >
2021-03-12 17:12:47 +00:00
< span class = "govuk-visually-hidden" > and< / span >
2021-03-11 13:30:38 +00:00
< div class = "product-page-big-number" > {{ counts.services|format_thousands }}< / div >
2022-08-31 08:47:18 -04:00
< span > services< / span >
2021-03-12 17:12:47 +00:00
< span class = "govuk-visually-hidden" > using Notify.< / span >
2021-03-11 13:30:38 +00:00
< / div >
2016-12-19 12:12:55 +00:00
< / div >
2023-06-06 15:28:24 -04:00
< p >
2017-03-24 13:36:13 +00:00
See the
2022-11-04 12:35:40 -04:00
< a class = "govuk-link govuk-link--no-visited-state" href = "{{ url_for('main.performance') }}" > list of services and organizations< / a > .
2023-06-06 15:28:24 -04:00
< / p >
2016-12-19 12:12:55 +00:00
< / div >
< / div >
2023-06-06 15:28:24 -04:00
< div class = "product-page-section" >
2016-12-14 14:59:41 +00:00
< div class = "with-keyline bottom-gutter-2" >
< h2 > Pricing< / h2 >
2020-02-19 11:57:15 +00:00
< div class = "govuk-grid-row bottom-gutter" >
2020-02-19 14:37:28 +00:00
< div class = "govuk-grid-column-one-half" >
2019-10-21 15:18:25 +01:00
< h3 class = "govuk-visually-hidden" > Emails< / h3 >
2016-12-14 14:59:41 +00:00
< div class = "product-page-big-number" > Unlimited< / div >
2022-08-31 08:47:18 -04:00
< span > free emails< / span >
2016-12-14 14:59:41 +00:00
< / div >
2020-02-19 14:37:28 +00:00
< div class = "govuk-grid-column-one-half" >
2019-10-21 15:18:25 +01:00
< h3 class = "govuk-visually-hidden" > Text messages< / h3 >
2022-04-01 09:14:24 +01:00
< div class = "product-page-big-number" > Up to 40,000< / div >
2022-08-31 08:47:18 -04:00
< span > free text messages a year,< br >
then {{ sms_rate }} pence per message< / span >
2016-12-14 14:59:41 +00:00
< / div >
2020-02-19 14:37:28 +00:00
< div class = "govuk-grid-column-one-half" >
2018-01-18 16:38:15 +00:00
< p class = "align-with-big-number-hint" >
There’ s no monthly charge, no setup fee and no procurement process.
2016-12-14 14:59:41 +00:00
< / p >
2023-06-06 15:28:24 -04:00
< p > Find out more about < a class = "govuk-link govuk-link--no-visited-state" href = "https://www.notifications.service.gov.uk/pricing" > pricing< / a > .
2019-03-26 10:59:27 +00:00
< / p >
2016-12-14 14:59:41 +00:00
< / div >
< / div >
< / div >
2023-06-06 15:28:24 -04:00
< / div >
2016-12-14 14:59:41 +00:00
< div class = "product-page-section" >
2023-06-06 15:28:24 -04:00
< div class = "govuk-grid-row margin-bottom-" >
2022-12-15 10:00:54 -05:00
< div class = "govuk-grid-column-full" >
2016-11-28 15:39:44 +00:00
< h2 class = "with-keyline" >
The team
< / h2 >
2023-06-06 15:28:24 -04:00
< p >
2022-12-06 11:03:47 -05:00
U.S. Notify is built and maintained by the Public Benefits Studio, within the General Services Administration's Technology Transformation Services.
2016-11-28 15:39:44 +00:00
< / p >
2023-06-06 15:28:24 -04:00
< p >
2019-12-06 07:53:46 +00:00
< a class = "govuk-link govuk-link--no-visited-state" href = "{{ url_for('main.support') }}" > Contact us< / a > if you have a question or want
2016-11-28 15:39:44 +00:00
to give feedback.
< / p >
< / div >
< / div >
2023-06-06 15:28:24 -04:00
< / div > -->
2016-11-23 10:58:12 +00:00
2015-11-25 16:21:28 +00:00
2015-12-01 09:54:58 +00:00
{% endblock %}