I have a script written in Python that sends emails. And I want to link to another site in the text of the letter up to one word. That is, when a user reads a letter and clicks on a word (for example, a link), he goes to my site. How can this be done in Python?
<a href="..">ссылку</a>
much easier to add. You canMIMEText('<a>..', 'html')
even withoutMIMEMultipart()
). - jfs