From adeae5d311b1e633e48115fd1e0e0f7572003f35 Mon Sep 17 00:00:00 2001 From: Adam <41971533+jcadam14@users.noreply.github.com> Date: Wed, 4 Dec 2024 07:41:11 -0700 Subject: [PATCH] Updates based on natalia's comments --- src/regtech_mail_api/internal.py | 2 +- tests/test_send.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/regtech_mail_api/internal.py b/src/regtech_mail_api/internal.py index 377f1f0..5e4dea8 100644 --- a/src/regtech_mail_api/internal.py +++ b/src/regtech_mail_api/internal.py @@ -33,7 +33,7 @@ class ConfirmationRequest(BaseModel): beta_body_template = """ Congratulations! This email confirms that the filing submitted by {signer_name} on {formatted_date} was successful. The confirmation number is {confirmation_id}. - The beta platform is for testing purposes only and user-supplied data may be removed at any time. Take a moment to email our support staff at sblhelp@cfpb.gov with your feedback or upload a new file to continue testing. + The beta platform is for testing purposes only and user-supplied data may be removed at any time. Take a moment to email our support staff at sblhelp@cfpb.gov with your feedback or return to the beta platform and upload a new file to continue testing. """ diff --git a/tests/test_send.py b/tests/test_send.py index 66e7233..b489602 100644 --- a/tests/test_send.py +++ b/tests/test_send.py @@ -132,7 +132,7 @@ def test_confirmation_send( expected_email = { "subject": "[BETA] Small Business Lending Data Filing Confirmation", - "body": "\nCongratulations! This email confirms that the filing submitted by Test User on November 20, 2024 at 1:51 PM EST was successful. The confirmation number is test.\n\nThe beta platform is for testing purposes only and user-supplied data may be removed at any time. Take a moment to email our support staff at sblhelp@cfpb.gov with your feedback or upload a new file to continue testing.\n", + "body": "\nCongratulations! This email confirms that the filing submitted by Test User on November 20, 2024 at 1:51 PM EST was successful. The confirmation number is test.\n\nThe beta platform is for testing purposes only and user-supplied data may be removed at any time. Take a moment to email our support staff at sblhelp@cfpb.gov with your feedback or return to the beta platform and upload a new file to continue testing.\n", "from_addr": "test@cfpb.gov", "to": ["test@cfpb.gov"], "cc": None,