diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-01-15 13:30:37 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-01-15 14:58:06 +0000 |
commit | e48a060eb80b76c943e7dbd815b63429905a14b6 (patch) | |
tree | d571a1ea0ecde7eb36d92c04cee49f77b686d29f /scripting | |
parent | a5dc04633d79f5abee85d919e097983117d2abd4 (diff) |
make emailmerge work for me with python3
Change-Id: I4f79aa69b39d2be8fcceacc90b858f116f875385
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/source/pyprov/mailmerge.README | 18 | ||||
-rwxr-xr-x | scripting/source/pyprov/mailmerge.py | 21 |
2 files changed, 29 insertions, 10 deletions
diff --git a/scripting/source/pyprov/mailmerge.README b/scripting/source/pyprov/mailmerge.README new file mode 100644 index 000000000000..6b4fb5ba4fa8 --- /dev/null +++ b/scripting/source/pyprov/mailmerge.README @@ -0,0 +1,18 @@ +Easiest way I find to test this is to... + +1) + +a) install fakemail and run it +b) tools->options->writer->mail merge email +c) localhost 8025 + +2) + +a) type some text into writer that will exercise utf-8, e.g. "Caolán's test" +b) tools->mail merge wizard->next->email message->select address book +c) create, add one user with your own email address, ok +d) next, next, text, send merged document as email +e) and test all of plain text, html and the various attachment options + +fake mail will dump the mail it gets into its pwd, if all that works, you can +then try with your own normal mail server. diff --git a/scripting/source/pyprov/mailmerge.py b/scripting/source/pyprov/mailmerge.py index 96bbd688bd12..448a030c68a0 100755 --- a/scripting/source/pyprov/mailmerge.py +++ b/scripting/source/pyprov/mailmerge.py @@ -36,6 +36,8 @@ from com.sun.star.mail import SendMailMessageFailedException from email.mime.base import MIMEBase from email.message import Message +from email.charset import Charset +from email.charset import QP from email.encoders import encode_base64 from email.header import Header from email.mime.multipart import MIMEMultipart @@ -152,7 +154,7 @@ class PyMailSMTPService(unohelper.Base, XSmtpService): print("PyMailSMTPService subject " + subject, file=dbgout) print("PyMailSMTPService from " + sendername, file=dbgout) print("PyMailSMTPService from " + sendermail, file=dbgout) - print("PyMailSMTPService send to " + recipients, file=dbgout) + print("PyMailSMTPService send to %s" % (recipients,), file=dbgout) attachments = xMailMessage.getAttachments() @@ -161,7 +163,7 @@ class PyMailSMTPService(unohelper.Base, XSmtpService): content = xMailMessage.Body flavors = content.getTransferDataFlavors() if dbg: - print("PyMailSMTPService flavors len " + len(flavors), file=dbgout) + print("PyMailSMTPService flavors len %d" % (len(flavors),), file=dbgout) #Use first flavor that's sane for an email body for flavor in flavors: @@ -169,11 +171,8 @@ class PyMailSMTPService(unohelper.Base, XSmtpService): if dbg: print("PyMailSMTPService mimetype is " + flavor.MimeType, file=dbgout) textbody = content.getTransferData(flavor) - try: - textbody = textbody.value - except: - pass - textbody = textbody.encode('utf-8') + #http://stackoverflow.com/questions/9403265/how-do-i-use-python-3-2-email-module-to-send-unicode-messages-encoded-in-utf-8-w + textbody = textbody.encode('utf-8').decode('iso8859-1') if len(textbody): mimeEncoding = re.sub("charset=.*", "charset=UTF-8", flavor.MimeType) @@ -181,7 +180,9 @@ class PyMailSMTPService(unohelper.Base, XSmtpService): mimeEncoding = mimeEncoding + "; charset=UTF-8" textmsg['Content-Type'] = mimeEncoding textmsg['MIME-Version'] = '1.0' - textmsg.set_payload(textbody) + c = Charset('utf-8') + c.body_encoding = QP + textmsg.set_payload(textbody, c) break @@ -227,7 +228,7 @@ class PyMailSMTPService(unohelper.Base, XSmtpService): maintype, subtype = ctype.split('/', 1) msgattachment = MIMEBase(maintype, subtype) data = content.getTransferData(flavor) - msgattachment.set_payload(data) + msgattachment.set_payload(data.value) encode_base64(msgattachment) fname = attachment.ReadableName try: @@ -250,7 +251,7 @@ class PyMailSMTPService(unohelper.Base, XSmtpService): truerecipients = uniquer.keys() if dbg: - print("PyMailSMTPService recipients are " + truerecipients, file=dbgout) + print(("PyMailSMTPService recipients are ", truerecipients), file=dbgout) self.server.sendmail(sendermail, truerecipients, msg.as_string()) |