## Script (Python) "mail2admin" ##bind container=container ##bind context=context ##bind namespace= ##bind script=script ##bind subpath=traverse_subpath ##parameters=fullname=None,regno=None,email=None,probtype=None,descr=None,commt=None ##title= ## # $Id: mai2admin.py 805 2006-11-09 09:38:29Z henrik $ mhost = context.MailHost prop = context.portal_properties # the message format, %s will be filled in from data message = """ From: %s <%s> To: %s Bcc: %s, %s Reply-To: %s Subject: WAeUP Contact Form Fullname: %s Member ID: %s Problem Type: %s Description: %s Comment: %s """ #prop.email_from_address should be used for To: msg = message % ( fullname, email, 'henrik@saoas.org', 'henrik@waeup.org', 'js@aixtraware.de', email, fullname, regno, probtype, descr, commt, ) mhost.send(msg)