Hello, Am Montag, 7. Februar 2005 um 02:48 schrieb Mark Sapiro: >>How it is possible to sent also a real name like >>From: "list ABC <[EMAIL PROTECTED]>" in every newsletter?
> You have to hack Mailman/Handlers/Cleanse.py to do this. thanks! Original code: msg['From'] = mlist.GetListEmail() I tried msg['From'] = mlist.real_name() % ' <' % mlist.GetListEmail() % '>' msg['From'] = mlist.real_name() + ' <' + mlist.GetListEmail() + '>' msg['From'] = mlist.real_name() . ' <' . mlist.GetListEmail() . '>' but it doesn�t work. What is the right syntax? -- Kind regards, Stefan Hofmeir ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp
