Skip to content

Commit

Permalink
Update gspc invite email.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-labbate committed Apr 1, 2024
1 parent 2f1921b commit 70ca981
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions training/api/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
''')

GSPC_INVITE_EMAIL_TEMPLATE = Template('''
<p>Hello</p>
<p>Greetings</p>
<p>
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 <a href="https://smartpay.gsa.gov/policies-and-audits/smart-bulletins/022/">Smart Bulletin 22</a>.
</p>
<p>
GSPC recipients are also required to have a minimum of six (6) months of continuous, hands-on experience working with the GSA SmartPay program.
Expand All @@ -42,7 +42,7 @@
<p>
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 [email protected].
If you have any questions or need further assistance, email us at <a href="mailto:[email protected]">[email protected]</a>.
</p>
<p>Thank you.</p>
''')
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 70ca981

Please sign in to comment.