Reputation: 324
I want to send email from backend php and HTML with links but does not want to use as hyperlink. I want to display those links as normal email text. Here is my working sample html.
<body>
<p>http://www.google.com</p>
</body>
Upvotes: 2
Views: 798
Reputation: 324
Finally found myself for this answer
<a href='#' style="text-tecoration:none; color:#000; cursor:defualt">
http://www.google.com</a>
Its work for me in Outlook.
Upvotes: 1
Reputation: 771
I believe there's an option for this in outlook Under Compose messages, --> Editor Options. here's try this article and see if it helps Stop text from turning into a hyperlink
Upvotes: 0