I am reading .txt file in Python code and I should get the same mail body what I have in my text file. It is working fine but hyperlinks not displayed in my outlook email, it displays only as text in outlook email.
Below is the code:
Mail_Content = open("MailBody.txt","r")
Read_Content = Mail_Content.read()
In the text file , passing content like this for hyperlink:
<a href="link">linkname</a>,'html'
Please help me out, I am trying to fix this from last two days.