Thanks for the great package @cesargb, we have been using it with great success! 🙂
We have recently encountered an issue where certain email security products (Barracuda Sentinel for example) are invalidating the links by stripping out the : and everything after it, which means our links are missing the token entirely.
I believe if we were to urlencode() the separator the issue would no longer occur. 🤞
It should be safe to do as Laravel will urldecode any route parameters, which would transform the %3A to : as before.
I've been running the changes on a local branch and i haven't noticed any issues. 👍
Build timing out, but the tests are passing locally:
Thanks for the great package @cesargb, we have been using it with great success! 🙂
We have recently encountered an issue where certain email security products (Barracuda Sentinel for example) are invalidating the links by stripping out the
:
and everything after it, which means our links are missing the token entirely.I believe if we were to
urlencode()
the separator the issue would no longer occur. 🤞It should be safe to do as Laravel will urldecode any route parameters, which would transform the
%3A
to:
as before.I've been running the changes on a local branch and i haven't noticed any issues. 👍
Build timing out, but the tests are passing locally: