Reputation: 180
While sending html and pain-text with MIMEMultipart('alternative')
When converting html to text the anchor of html is breaking in new line
to
url/other-part-of-url
Why this is happening?
Upvotes: 3
Views: 166
Reputation: 1063
django html2text(content,baseUrl,length) has 3 parameter in constructor where the third one is length(default 78). You can increase the length by using that.
Upvotes: 5