From 70ca9811faa0543c5cdbf6749f7f688a9837fc11 Mon Sep 17 00:00:00 2001 From: John Labbate Date: Mon, 1 Apr 2024 15:12:48 -0400 Subject: [PATCH] Update gspc invite email. --- training/api/email.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/training/api/email.py b/training/api/email.py index 8ef3e219..879f3f2c 100644 --- a/training/api/email.py +++ b/training/api/email.py @@ -26,10 +26,10 @@ ''') GSPC_INVITE_EMAIL_TEMPLATE = Template(''' -

Hello

+

Greetings

-During the GSA SmartPay Training Forum, you completed the required coursework for the GSA SmartPay Program Certification (GSPC) defined by Smart Bulletin 22. +During the GSA SmartPay Training Forum, you completed the required coursework for the GSA SmartPay Program Certification (GSPC) defined by Smart Bulletin 22.

GSPC recipients are also required to have a minimum of six (6) months of continuous, hands-on experience working with the GSA SmartPay program. @@ -42,7 +42,7 @@

After completing this action, your GSPC will be immediately emailed to you and available for download within the training system. -If you have any questions or need further assistance, email us at gsa_smartpay@gsa.gov. +If you have any questions or need further assistance, email us at gsa_smartpay@gsa.gov.

Thank you.

''') @@ -84,7 +84,7 @@ def send_gspc_invite_email(to_email: EmailStr, link: str) -> None: body = GSPC_INVITE_EMAIL_TEMPLATE.substitute({"link": link}) message = EmailMessage() message.set_content(body, subtype="html") - message["Subject"] = "Paceholder" + message["Subject"] = "Verify your GSA SmartPay Program Certification (GSPC) Coursework and Experience" message["From"] = f"{settings.EMAIL_FROM_NAME} <{settings.EMAIL_FROM}>" message["To"] = to_email