Last change
on this file since 11107 was
909,
checked in by joachim, 18 years ago
|
=redirect_url in mail2student corrected
|
File size:
1.2 KB
|
Line | |
---|
1 | ## Script (Python) "mail2student"
|
---|
2 | ##bind container=container
|
---|
3 | ##bind context=context
|
---|
4 | ##bind namespace=
|
---|
5 | ##bind script=script
|
---|
6 | ##bind subpath=traverse_subpath
|
---|
7 | ##parameters=co_name=None,co_email=None,student_email=None,probtype=None,commt=None
|
---|
8 | ##title=
|
---|
9 | ##
|
---|
10 | # $Id: mail2admin.py 869 2006-11-15 13:46:49Z henrik $
|
---|
11 |
|
---|
12 | mhost = context.MailHost
|
---|
13 | prop = context.portal_properties
|
---|
14 |
|
---|
15 | # the message format, %s will be filled in from data
|
---|
16 |
|
---|
17 | message = """
|
---|
18 | From: %s <%s>
|
---|
19 | To: %s
|
---|
20 | Cc: %s
|
---|
21 | Bcc: %s
|
---|
22 | Reply-To: %s
|
---|
23 | Subject: %s
|
---|
24 | %s
|
---|
25 | """
|
---|
26 |
|
---|
27 | #prop.email_from_address should be used for To:
|
---|
28 | REQUEST = context.REQUEST
|
---|
29 | url_tuple = REQUEST.HTTP_REFERER.split('?')
|
---|
30 | if len(url_tuple) == 2:
|
---|
31 | url_tuple[1] ='portal_status_message=Your message has been sent!'
|
---|
32 | else:
|
---|
33 | url_tuple.append('portal_status_message=Your message has been sent!')
|
---|
34 | redirect_url = "?".join(url_tuple)
|
---|
35 | REQUEST.set('rurl', redirect_url) # to see the result in the error log
|
---|
36 | msg = message % (
|
---|
37 | co_name,
|
---|
38 | co_email,
|
---|
39 | student_email,
|
---|
40 | co_email,
|
---|
41 | 'henrik@waeup.org',
|
---|
42 | # 'js@aixtraware.de',
|
---|
43 | co_email,
|
---|
44 | probtype,
|
---|
45 | commt,
|
---|
46 | )
|
---|
47 | mhost.send(msg)
|
---|
48 |
|
---|
49 | REQUEST = context.REQUEST
|
---|
50 | RESPONSE = REQUEST.RESPONSE
|
---|
51 |
|
---|
52 | RESPONSE.redirect(redirect_url)
|
---|
Note: See
TracBrowser for help on using the repository browser.