Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix register #193

Merged
merged 2 commits into from
Jan 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions backend/routes/user_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,18 +162,21 @@ async def reset_password(request: ResetPasswordRequest):
async def send_verification_email(
request: SendVerificationEmailRequest, background_tasks: BackgroundTasks
):
print("Getting user by email")
with DatabaseManager() as session:
user_manager = UserManager(session)
user = user_manager.get_user_by_email(request.email)
if not user:
raise HTTPException(status_code=404, detail="User not found")

print("Generating verification token")
# Generate a verification token and save it in the database
token = generate_email_verification_token(user.email)
user_manager.update_user_verification_token(
username=user.username, verification_token=token
)

print("Sending verification email")
# Add a background task to send the email
background_tasks.add_task(
send_verification_email_with_sendgrid, user.email, token
Expand Down
3 changes: 3 additions & 0 deletions backend/utils/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,13 @@ async def send_verification_email_with_sendgrid(email: List[str], token: str):
)
# Disable click tracking in development
# if APP_ENV == "dev":
print("Disabling click tracking")
message.tracking_settings = TrackingSettings()
message.tracking_settings.click_tracking = ClickTracking(False, False)
try:
print("Sending email")
sg = SendGridAPIClient(SENDGRID_API_KEY)
print("Sending email")
response = await sg.send(message)
print(response.status_code)
print(response.body)
Expand Down
Loading