Open GoogleCodeExporter opened 9 years ago
Original comment by sune.woeller@gmail.com
on 4 Jan 2010 at 1:51
[deleted comment]
I had this same thing happen in my own cart, it turns out that the MailHost was
choking on the utf-8 characters and it was a simple fix to re-encode the
message in as quoted-printable.
In Products.PloneGetPaid, in notifications.py in the sendNotification method,
change
mailer.send(str(message))
to
mailer.send(message.encode('utf-8'), encode='quoted-printable')
Original comment by joseph.m...@gmail.com
on 14 Dec 2010 at 10:38
Original issue reported on code.google.com by
sune.woeller@gmail.com
on 11 Dec 2009 at 11:10