From 77f17db9dc828c3145c2e23241ff5f3e40e1c4c3 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Tue, 20 Apr 2021 15:46:16 +0100 Subject: [PATCH 1/5] Update email status description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update email status description for ‘Inbox not accepting messages right now’ --- app/templates/views/message-status.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/views/message-status.html b/app/templates/views/message-status.html index 45ce7c52b..67a7bddbd 100644 --- a/app/templates/views/message-status.html +++ b/app/templates/views/message-status.html @@ -26,7 +26,7 @@ ('Sending', 'Notify has sent the message to the provider. The provider will try to deliver the message to the recipient for up to 72 hours. Notify is waiting for delivery information.'), ('Delivered', 'The message was successfully delivered. Notify will not tell you if a user has opened or read a message.'), ('Email address does not exist', 'The provider could not deliver the message because the email address was wrong. You should remove these email addresses from your database.'), - ('Inbox not accepting messages right now', 'The provider could not deliver the message. This can happen when the recipient’s inbox is full. You can try to send the message again.'), + ('Inbox not accepting messages right now', 'The provider could not deliver the message. This can happen when the recipient’s inbox is full or their anti-spam filter rejects your email. Make sure your content does not look like spam. You can try to send the message again.'), ('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.'), ] %} {% call row() %} From 0fe60c3bd8906f68b575494cd628b1c75807f916 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Tue, 20 Apr 2021 15:51:12 +0100 Subject: [PATCH 2/5] Update content --- app/templates/views/message-status.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/views/message-status.html b/app/templates/views/message-status.html index 67a7bddbd..a2288506c 100644 --- a/app/templates/views/message-status.html +++ b/app/templates/views/message-status.html @@ -26,7 +26,7 @@ ('Sending', 'Notify has sent the message to the provider. The provider will try to deliver the message to the recipient for up to 72 hours. Notify is waiting for delivery information.'), ('Delivered', 'The message was successfully delivered. Notify will not tell you if a user has opened or read a message.'), ('Email address does not exist', 'The provider could not deliver the message because the email address was wrong. You should remove these email addresses from your database.'), - ('Inbox not accepting messages right now', 'The provider could not deliver the message. This can happen when the recipient’s inbox is full or their anti-spam filter rejects your email. Make sure your content does not look like spam. You can try to send the message again.'), + ('Inbox not accepting messages right now', 'The provider could not deliver the message. This can happen when the recipient’s inbox is full or their anti-spam filter rejects your email. Check your content does not look like spam before you try to send the message again.'), ('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.'), ] %} {% call row() %} From 6782f6770b350191b6ab03029d2342468aa8f093 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Tue, 20 Apr 2021 16:41:51 +0100 Subject: [PATCH 3/5] Fix error --- app/templates/views/message-status.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/views/message-status.html b/app/templates/views/message-status.html index a2288506c..4ebe2a7a6 100644 --- a/app/templates/views/message-status.html +++ b/app/templates/views/message-status.html @@ -26,7 +26,7 @@ ('Sending', 'Notify has sent the message to the provider. The provider will try to deliver the message to the recipient for up to 72 hours. Notify is waiting for delivery information.'), ('Delivered', 'The message was successfully delivered. Notify will not tell you if a user has opened or read a message.'), ('Email address does not exist', 'The provider could not deliver the message because the email address was wrong. You should remove these email addresses from your database.'), - ('Inbox not accepting messages right now', 'The provider could not deliver the message. This can happen when the recipient’s inbox is full or their anti-spam filter rejects your email. Check your content does not look like spam before you try to send the message again.'), + ('Inbox not accepting messages right now', 'The provider could not deliver the message. This can happen when the recipient’s inbox is full or their anti-spam filter rejects your email. Check your content does not look like spam before you try to send the message again.'), ('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.'), ] %} {% call row() %} From 94d71ca330b75c03b65ee4e3d70560d3394aee76 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Tue, 20 Apr 2021 17:30:03 +0100 Subject: [PATCH 4/5] Update app/templates/views/message-status.html Co-authored-by: Katie Smith --- app/templates/views/message-status.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/views/message-status.html b/app/templates/views/message-status.html index 4ebe2a7a6..b9c54f799 100644 --- a/app/templates/views/message-status.html +++ b/app/templates/views/message-status.html @@ -26,7 +26,7 @@ ('Sending', 'Notify has sent the message to the provider. The provider will try to deliver the message to the recipient for up to 72 hours. Notify is waiting for delivery information.'), ('Delivered', 'The message was successfully delivered. Notify will not tell you if a user has opened or read a message.'), ('Email address does not exist', 'The provider could not deliver the message because the email address was wrong. You should remove these email addresses from your database.'), - ('Inbox not accepting messages right now', 'The provider could not deliver the message. This can happen when the recipient’s inbox is full or their anti-spam filter rejects your email. Check your content does not look like spam before you try to send the message again.'), + ('Inbox not accepting messages right now', 'The provider could not deliver the message. This can happen when the recipient’s inbox is full or their anti-spam filter rejects your email. Check your content does not look like spam before you try to send the message again.'), ('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.'), ] %} {% call row() %} From 652f3f80657c317e7eea3462972528164354b230 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Tue, 20 Apr 2021 17:31:08 +0100 Subject: [PATCH 5/5] Update {{ text_field(charge | safe) }} --- app/templates/views/message-status.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/views/message-status.html b/app/templates/views/message-status.html index b9c54f799..b1e1bc2fd 100644 --- a/app/templates/views/message-status.html +++ b/app/templates/views/message-status.html @@ -31,7 +31,7 @@ ] %} {% call row() %} {{ text_field(message_length) }} - {{ text_field(charge) }} + {{ text_field(charge | safe) }} {% endcall %} {% endfor %} {% endcall %}