Facing an issue with the email URL's on my application.I send users the links for sharing files via email.The links is to login page on my application,which authenticates the user.Now the link in emails behaves different in different mail providers.Google does it in the right way i.e my link appears and works fine in google.
Yahoo the worst of all.It completely strips the href
attribute from the link.This is after inspecting the link in firebug console.
<a style="color:#333;padding-left:3px;padding-right:10px;text-decoration:none;font-family:'Segoe UI', Tahoma, Verdana, Arial, Sans-Serif;font-size:10pt;" rel="nofollow" id="yui_3_13_0_1_1396955520023_2240">links.txt</a>
It adds the rel=nofollow
which may be causing the issue.But I have no idea why this happens,went through web but found others facing same problem with no solution that works.
My link is something like this http://www.abc.com/authenticate.php?id=YLZr4Sj3MjAxNw==&pid=K4mfnbCyMQ==&auth=Iu8Yi2er
This does not have any special character that may cause the issue.
Live.com : This adds a https://
protocol to the link instead of http://
The link I build is with http
,but it internally adds https
to it which I don't want.
Any one who has faced similar issues,I would like some inputs,guidance on the issue.
Cheers!