Skip to content

Commit

Permalink
Merge pull request #266 from openaq/staging
Browse files Browse the repository at this point in the history
fix typo in auth variable (#265)
  • Loading branch information
russbiggs authored Sep 15, 2023
2 parents e2cca33 + ad2b5cb commit d5f7baf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openaq_api/openaq_api/routers/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def send_verification_email(verification_code: str, full_name: str, email: str):
TEXT_EMAIL_CONTENT = f"""
Thank you for signing up for an OpenAQ API Key
Visit the following URL to verify your email:
https://api.openaq.org/verify/{verifiation_code}
https://api.openaq.org/verify/{verification_code}
"""
HTML_EMAIL_CONTENT = f"""
<html>
Expand All @@ -55,7 +55,7 @@ def send_verification_email(verification_code: str, full_name: str, email: str):
<td bgcolor="#FFFFFF" style="padding:30px;">
<h1 style='text-align:center'>Thank you for signing up for an OpenAQ API Key</h1>
<p>Click the following link to verify your email:</p>
<a href="https://api.openaq.org/verify/{verification_code}">https://api.openaq.org/verify/{verifiation_code}</a>
<a href="https://api.openaq.org/verify/{verification_code}">https://api.openaq.org/verify/{verification_code}</a>
</td>
</tr>
</table>
Expand Down

0 comments on commit d5f7baf

Please sign in to comment.