> message = "Comment was was added to '%s' by '%s': \n\n%s" % (self.post, > self.author, self.body)
Most likely your users are posting utf-8 data which you are trying to insert into a byte string . To fix this change that line to: message = u"Comment was was added to '%s' by '%s': \n\n%s" % (self.post, self.author, self.body) (I.e. Change the format string to a Unicode string) This is a common pitfall when dealing with user entered data. Bye Ulrich -- 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.