I'm using the filebased email backend for testing (although the console version had the same problem). When I send email, either via function or template, lines that are too long, are broken, with an '=' sign at the end. For instance:

this is a test of a really long line that has more words that could possibl=
y fit in a single column of text.

When sending email, is there some maximum-linelength variable, or something, that's truncating/breaking lines? Any way to prevent this from happening?

Code I'm using to test:

EMAIL_BACKEND = 'django.core.mail.backends.filebased.EmailBackend'
from django.core.mail import send_mail

def send_letter(request):
the_text = 'this is a test of a really long line that has more words that could possibly fit in a single column of text.'
    send_mail('some_subject', the_text, 'm...@test.com', ['m...@test.com'])

Thanks.
John C>

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to