Sendgrid Plugin not working after appery upgrade.
Ok, thank you. I will do.
Have you also used email address as username?
I will revert back shortly.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Ok, thank you. I will do.
Have you also used email address as username?
I will revert back shortly.
Hi
It is working with modified server code.
The issue is following line in both server code scripts. I am not sure why you are encoding the username because it causes chaos if your username is an email address or contains special characters.
Replace this
"where": '{"username": "' + encodeURIComponent(username) + '"}'
with this
"where": '{"username": "' + username + '"}'
and all works perfect
Thank you.
Thank you for update and shared solution, glad it works.