Remove the exclamation point from the email

This commit is contained in:
sabaimran
2024-05-01 19:01:51 +05:30
parent bddd1d0fcb
commit f4fbc91515

View File

@@ -44,7 +44,7 @@ async def send_welcome_email(name, email):
{ {
"from": "team@khoj.dev", "from": "team@khoj.dev",
"to": email, "to": email,
"subject": f"{name}, four ways to use Khoj!" if name else "Four ways to use Khoj!", "subject": f"{name}, four ways to use Khoj" if name else "Four ways to use Khoj",
"html": html_content, "html": html_content,
} }
) )