Yep I did to... just posted here for the contour devs to see, as sending from the "spotted a bug page" of the contour branch or umbraco just disappears into the ether...
In case anyone lands on this topic that needs an updated regex, I use: [a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?
default email regexp doesn't allow .co.uk addresses
the default regexp for email validaton on the send email template is a little too restrictive.standard send email - email regex validation doens't allow .co.uk domains.
^\w+@[a-zA-Z_]+?\.[a-zA-Z]{2,3}$
only allows for a single 2 or 3 letter
so will fail for [email protected] :-(
MS email validation is \w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
Mike,
I got caught with that the other day, replaced it with ms one and it worked.
Regards
Ismail
Yep I did to... just posted here for the contour devs to see, as sending from the "spotted a bug page" of the contour branch or umbraco just disappears into the ether...
thanks.
In case anyone lands on this topic that needs an updated regex, I use:
[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?
--
Donald
Thanks Donald,
That was a great help :)
Sam.
is working on a reply...