[SOLVED] Verify Email, Reset Password Email link not working

image
I received the email from Moralis Admin, but clicking buttons will not work anything.
What should I have to do in order to make this working?

Can you check if the dynamic link is attached to the button in email, by right clicking.

Nothing is attached in dynamic link to the button.

Can you share a email template pic where the {{ link }} is added for the button.

Nothing is added to link button.
image

this is a template that you created?

Nope, I didn’t create any email template.

Did the emails suggest it was from Moralis? These don’t look legitimate.

Moralis.User.requestPasswordReset(email)
I called this function to reset the password.

that email that you showed doesn’t seem to be related to moralis.

There was a sendgrid issue. This issue resolved successfully.

1 Like

I received reset link after a while. Is it possible to change the ccctulh2r.usemoralis.com to username?

You can add a dynamic name parameter your template using {{ name }}. Username from database will be added in place of {{ name }}.

Whenver I update the user, const { setUserData, Moralis, user } = useMoralis();
I am getting the singup notification all the time.
Signup notification must be called only once when I sign up. not user data.
How to avoid this?

Where you get that notification? Did you try to self host the server?

I integrated the Sendgrid notification in moralis dashboard email settings.
Just added Sendgrid Verification Email Template ID there.
but getting singup email whenever I update the user data.

What is in that email, you receive it for all the users or every user receives that email?

image
Every user is getting the sign up email whenever tries to update the profile data.(username, email, phone, something else…
)

Even if the email is validated?

email is validated.
signup email should be called only once when call register api in moralis.
Currently it is calling when setUserData api as well. need to stop this I think.