hi supertokens team - I am having an issue setting...
# support-questions-legacy
a
hi supertokens team - I am having an issue setting upI am getting AttributeError: 'VerificationEmailTemplateVars' object has no attribute 'password_reset_link' when trying to send email verification email via SMTP. I am using the supertokens-python sdk 0.16.3. Is there an issue with how I have entered the SMTP settings?
Copy code
smtp_settings = SMTPSettings(
        host="tangomoney.com",
        port=587,
        from_=SMTPSettingsFrom(name="Tango Money", email="mail@tangomoney.com"),
        secure=False,
        username="<user>",
        password="<pw>",
    )