source: WAeUP_SRP/trunk/skins/waeup_aaua/mail2admin.py @ 8241

Last change on this file since 8241 was 5608, checked in by Henrik Bettermann, 14 years ago

Remove Bcc: waeup@…

File size: 1.0 KB
Line 
1## Script (Python) "mail2admin"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=fullname=None,regno=None,email=None,probtype=None,descr=None,commt=None
8##title=
9##
10# $Id: mail2admin.py 2334 2007-10-09 15:01:36Z henrik $
11
12mhost = context.MailHost
13prop = context.portal_properties
14
15d = {}
16d['fullname'] = fullname
17d['email'] = email
18d['email_from'] = prop.email_from_address
19d['regno'] = regno
20d['probtype'] = probtype
21d['descr'] = descr
22
23message = """
24From: %(fullname)s <%(email)s>
25To: %(email_from)s
26Cc: %(email)s
27Reply-To: %(email)s
28Subject: AAUA Contact
29
30Fullname: %(fullname)s
31Member ID: %(regno)s
32Problem Type: %(probtype)s
33Description: %(descr)s
34"""
35
36mhost.send(message % d)
37
38REQUEST = context.REQUEST
39RESPONSE = REQUEST.RESPONSE
40
41redirect_url = REQUEST.HTTP_REFERER
42redirect_url = '%s/?%s' % (redirect_url,'portal_status_message=Your message has been sent!')
43RESPONSE.redirect(redirect_url)
Note: See TracBrowser for help on using the repository browser.