Changeset 820 for WAeUP_SRP/trunk/skins


Ignore:
Timestamp:
9 Nov 2006, 21:29:25 (18 years ago)
Author:
Henrik Bettermann
Message:

contact form finished

Location:
WAeUP_SRP/trunk/skins/waeup_default
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_default/mail2admin.py

    r819 r820  
    55##bind script=script
    66##bind subpath=traverse_subpath
     7##parameters=fullname=None,studentid=None,email=None,probtype=None,descr=None,commt=None
    78##title=
    89##
     10# $Id: mai2admin.py 805 2006-11-09 09:38:29Z henrik $
    911
    10 # the objects we need
    11 mship = context.portal_membership
    1212mhost = context.MailHost
    1313prop = context.portal_properties
    1414
    1515# the message format, %s will be filled in from data
     16
    1617message = """
    1718From: %s
    1819To: %s
     20Bcc: %s
    1921Subject: Test Email from a Student
    2022
    21 Test
     23Fullname: %s
     24Student ID: %s
     25Email: %s
     26Problem Type: %s
     27Description: %s
     28Comment: %s
    2229"""
    2330
    2431msg = message % (
    2532     prop.email_from_address,
    26      'henrik@saoas.org',
     33     'henrik@saoas.org',
     34     'henrik@waeup.org',
     35     fullname,
     36     studentid,
     37     email,
     38     probtype,
     39     descr,
     40     commt,
    2741     )
    2842mhost.send(msg)
     43
Note: See TracChangeset for help on using the changeset viewer.