Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to use django template for e-mail sending. But I should have two version of e-mails - html and plain text. The first version is generated like below:

template_values = {
     'company_id': company.id
     }
template_file = os.path.join(os.path.dirname(__file__), 'templates/email.html')
html = template.render(template_file, template_values)

Now I should generate plain text from the same file - templates/email.html, but it contains html tags (like <div style="font-size:13px; margin: 14px; position:relative">), which I should remove (links should stay, but should be replaced with plain text, for ex., <a href="http://example.com">Example</a> should be replaced with something like Example (http://example.com)).

I've read that I shouldn't use regex for this. What kind of built-in GAE library can help me? Or is there any way to use somehow django's striptags?

share|improve this question
2  
A common way to achieve this is to use another template for the other email format 'text'. – jpic Oct 21 '12 at 10:11
1  
django-templated-email – Burhan Khalid Oct 21 '12 at 10:13
@jpic, thanks. If I use separate plain text django template, looks like end of line characters are removed. How can I avoid it? – LA_ Oct 21 '12 at 10:21

1 Answer

up vote 2 down vote accepted

Once you get the HTML, you need to do something like:

from django.utils.html import strip_tags

template_values = {
     'company_id': company.id
}
template_file = os.path.join(os.path.dirname(__file__), 'templates/email.html')
html = template.render(template_file, template_values)

plain_text = strip_tags(html)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.