diff --git a/app/templates/views/message-status.html b/app/templates/views/message-status.html index c9e6dc4d6..556fa9ace 100644 --- a/app/templates/views/message-status.html +++ b/app/templates/views/message-status.html @@ -19,7 +19,6 @@

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.

For security, this information is only available for X days after a message has been sent. You can download a list of sent messages for your own records.

-

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
@@ -27,36 +26,56 @@
              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 or 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 states you’ll see in Notify

+ +

Emails and text messages

+
+ {% call mapping_table( + caption='Message statuses – email and text message', + field_headings=['Status', 'Description'], + field_headings_visible=True, + caption_visible=False + ) %} + {% for message_length, charge in [ + ('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 or 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.'), + ] %} + {% call row() %} + {{ text_field(message_length) }} + {{ text_field(charge) }} + {% endcall %} + {% endfor %} + {% endcall %} +
-

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.

+

+
+ {% call mapping_table( + caption='Letters', + field_headings=['Status', 'Description'], + field_headings_visible=True, + caption_visible=False + ) %} + {% for message_length, charge in [ + ('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.'), + ] %} + {% call row() %} + {{ text_field(message_length) }} + {{ text_field(charge) }} + {% endcall %} + {% endfor %} + {% endcall %} +
+ +

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

+