comparison roundup/roundupdb.py @ 4114:da682f38bad3

bug introduced in the migration to the email package (issue 2550531)
author Richard Jones <richard@users.sourceforge.net>
date Tue, 17 Mar 2009 22:56:38 +0000
parents 4b0ddce43d08
children d5cd6f440396
comparison
equal deleted inserted replaced
4113:f4641359b892 4114:da682f38bad3
497 else: 497 else:
498 message.set_payload(content) 498 message.set_payload(content)
499 encode_quopri(message) 499 encode_quopri(message)
500 500
501 if first: 501 if first:
502 mailer.smtp_send(sendto + bcc_sendto, message) 502 mailer.smtp_send(sendto + bcc_sendto, str(message))
503 else: 503 else:
504 mailer.smtp_send(sendto, message) 504 mailer.smtp_send(sendto, str(message))
505 first = False 505 first = False
506 506
507 def email_signature(self, nodeid, msgid): 507 def email_signature(self, nodeid, msgid):
508 ''' Add a signature to the e-mail with some useful information 508 ''' Add a signature to the e-mail with some useful information
509 ''' 509 '''

Roundup Issue Tracker: http://roundup-tracker.org/