From 69592e7e8ca9ae90d87b53dc4e267708c60bd7a8 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Thu, 4 Apr 2019 16:05:05 +0100 Subject: [PATCH] Create Message status page Create Message status page --- app/templates/views/message-status.html | 63 +++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 app/templates/views/message-status.html diff --git a/app/templates/views/message-status.html b/app/templates/views/message-status.html new file mode 100644 index 000000000..3686ef1d4 --- /dev/null +++ b/app/templates/views/message-status.html @@ -0,0 +1,63 @@ +{% extends "withoutnav_template.html" %} +{% from "components/sub-navigation.html" import sub_navigation %} + +{% block per_page_title %} + What happens when you send a message OR Message states you’ll see in Notify +{% endblock %} + +{% block maincolumn_content %} + +
+
+ {{ sub_navigation(navigation_links) }} +
+
+ +

What happens when you send a message // Message states you’ll see in Notify

+ +

When you send a message using GOV.UK Notify, it moves through different states.

+ +

Notify’s real-time dashboard lets you check the status of any message, to see when it was delivered. You can use our API to check the status of your messages too.

+ +

Read our documentation for a detailed list of API message statuses.

+ A picture of the sending flow of messages in Notify, showing the three states of Sending, Delivered, And Failed. Also shows the next
+             steps when messages fail, deleting data and trying a new channel for permanent failures, and trying again or trying a new channel for
+             temporary failures +

Message status – emails and text messages

+

Sending

+

GOV.UK Notify has sent the message to the provider. The provider will try to deliver the message to the recipient. GOV.UK Notify is waiting for delivery information.

+

Sent internationally (text messages only)

+

The message was sent to an international number. The mobile networks in some countries do not provide any more delivery information.

+

Delivered

+

The message was successfully delivered.

+

Notify will not tell you if a user has opened or read a message.

+

Phone number or email address does not exist

+

The provider could not deliver the message because the email address or phone number was wrong. +

You should remove these email addresses or phone numbers from your database.

+

You’ll still be charged for text messages to numbers that do not exist.

+

Inbox/phone not accepting messages right now

+

The provider could not deliver the message after trying for 72 hours.

+

This can happen when the recipient’s inbox is full or their phone is off.

+

You can try to send the message again.

+

You’ll still be charged for text messages to phones that are not accepting messages.

+

Technical failure

+

Your message was not sent because there was a problem between Notify and the provider.

+

You’ll have to try sending your messages again.

+

You will not be charged for text messages that are affected by a technical failure.

+ +

Message status – letters

+

Sent

+

GOV.UK Notify has sent the letter to the provider to be printed.

+

Cancelled

+

Sending cancelled. Your letter will not be printed or dispatched.

+

Technical failure

+

GOV.UK Notify had an unexpected error while sending to our printing provider.

+ +
+
+ +{% endblock %}