My objective is to send a clean list of field names and values via email after the completion of a form in Django.
When formating an email message after extracting a list of field names and values from a list i get a string that prints something like this. $print(message_str): ... name="Bill Jones" street="Baker St." zipcode="99999"... When I send this string as message parameter with Send_mail it arrives looking like this in the body of the email.... ... name=3D"Bill Jones" street=3D"Baker St." zipcode=3D"99999"... I'm curious where between the string being readable without the 3D via the Django debugger via Send_mail and into the arriving mail where the 3D might be interjected into the string. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---