-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update wording on confirmation email (#457)
- Loading branch information
Showing
1 changed file
with
9 additions
and
6 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 |
---|---|---|
|
@@ -44,18 +44,21 @@ def submit_ticket(form_data): | |
|
||
|
||
def send_confirmation_email(form_name, form_data): | ||
email_body = """ | ||
email_body = f""" | ||
<p>Greetings,</p> | ||
<p> | ||
You have successfully submitted a form on the TACC website. Thank you for your submission. | ||
Thank you for reaching out to TACC and completing the {form_name}. | ||
</p> | ||
<p> | ||
Business hours are Monday - Friday, 8AM to 5PM Central. We will respond to your submission | ||
according to the information provided on the form webpage. | ||
<ul> | ||
<li>For training registration requests, you will be contacted within one week to confirm registration. For additional help please contact Lauren Bruce ([email protected]).</li> | ||
<li>For tour requests, a tour coordinator will contact you within two business days to complete your reservation. For additional assistance please reach out to [email protected].</li> | ||
<li>For all other issues, a TACC support person will be in contact shortly. For additional assistance please reach out to [email protected].</li> | ||
</ul> | ||
</p> | ||
<p> | ||
Sincerely,<br> | ||
TACC Communications | ||
Thank you for your time,<br> | ||
TACC Support | ||
</p> | ||
""" | ||
send_mail( | ||
|