[FIX] mail_template: replace local links except mailto
Before this commit, all the mailto:xx@ww.com in emails were transformed into http://web.base.url/xx@ww.com This was due to the url parsing of werkzeug urls.py, which definitely get the scheme (mailto), but doesn't get the netloc of the url -- because it has no // Ater this commit, we transform links to local ones, except if the scheme is mailto, and the issue disappears. OPW 807795
Please register or sign in to comment