Page 3 of 3

Sendgrid Plugin not working after appery upgrade.

Posted: Tue Jul 14, 2015 4:45 pm
by Deon

Ok, thank you. I will do.

Have you also used email address as username?

I will revert back shortly.


Sendgrid Plugin not working after appery upgrade.

Posted: Tue Jul 14, 2015 6:43 pm
by Deon

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.


Sendgrid Plugin not working after appery upgrade.

Posted: Wed Jul 15, 2015 8:04 am
by Alena Prykhodko

Thank you for update and shared solution, glad it works.