diff --git a/src/registrar/templates/emails/status_change_action_needed.txt b/src/registrar/templates/emails/status_change_action_needed.txt index 66ef66d56..1edd4bc8a 100644 --- a/src/registrar/templates/emails/status_change_action_needed.txt +++ b/src/registrar/templates/emails/status_change_action_needed.txt @@ -24,7 +24,7 @@ about the action needed from you. You may need to update your application or provide additional information. - If you do not receive a separate email with these details, please contact us: - + THANK YOU diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index bcc7ebcc4..09f9337d8 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -191,7 +191,7 @@ class TestDomainApplicationAdmin(TestCase): email_body = email_content["Simple"]["Body"]["Text"]["Data"] # Assert or perform other checks on the email details - expected_string = "Your .gov domain request requires your attention." + expected_string = "Your .gov domain request requires a follow-up action to help with our review." self.assertEqual(from_email, settings.DEFAULT_FROM_EMAIL) self.assertEqual(to_email, EMAIL) self.assertIn(expected_string, email_body)