Closed GoogleCodeExporter closed 9 years ago
Same problem with commas. The solution probably is changing plapp.send_mail()
(in plapp/__init__.py):
'to': '%s <%s>' % (name, address),
should be
'to': '"%s" <%s>' % (name.replace('"', '\\"', address),
I haven't tested this yet.
Original comment by sander.d...@gmail.com
on 6 Nov 2011 at 2:41
Issue 47 has been merged into this issue.
Original comment by sander.d...@gmail.com
on 27 Nov 2011 at 4:04
Fixed in http://tryout.pleft.com/
Original comment by sander.d...@gmail.com
on 27 Nov 2011 at 4:23
Original issue reported on code.google.com by
sander.d...@gmail.com
on 24 Oct 2011 at 8:27