-
Notifications
You must be signed in to change notification settings - Fork 51
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
SignUp sending email template with empty parameters #14
Comments
@fplaras thanks for the question! Have you followed everything here? https://supabase.com/docs/reference/javascript/auth-signup (these are the JS docs but they mostly translate). For the C# Gotrue client, you can add the metadata with the |
I did see that there was an optional object parameter in CreateUser that needed to be eventually a dictionary of <string,object>. I thought it was what I needed to use but I might have had the wrong syntax if it was FullName, full_name or fullName. The SignUp() method did fire the email confirmation and the configurl parameter is working but I updated the link of that template to redirect to an api controller route but I have to map the query string from the Url to the signature of the controller so that it can be a valid route. The goal I was aiming for was to update some user fields in one of my tables when the email is verified by the user. |
The requested change to |
Thank you, this is the snippet of code I have. It is not sending an email confirmation when the user is created and the required email confirmation flag is set on the dashboard. The user does get created. |
@fplaras I don't believe the |
Thank you |
I was attempting to signup a user but the email template provided by supabase for confirmation has parameters that are not clear how they can be set or created. For example {{ .FullName }}. Anyone can steer me in the right direction? I have used other methods such as CreateUser as an alternative but it doesn't not trigger an email confirmation to be sent and I could not find a method to trigger an email confirmation request via the client.
The text was updated successfully, but these errors were encountered: