-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f1921b
commit 70ca981
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
@@ -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> | ||
''') | ||
|
@@ -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 | ||
|
||
|