Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
website
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gruppo Ask
website
Commits
d0079ac7
Commit
d0079ac7
authored
Aug 17, 2012
by
Giuseppe Terrasi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sync with rev 1276 upstream
parent
a78746d5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
forum/templatetags/email_tags.py
forum/templatetags/email_tags.py
+1
-1
forum/utils/mail.py
forum/utils/mail.py
+7
-5
No files found.
forum/templatetags/email_tags.py
View file @
d0079ac7
...
...
@@ -20,7 +20,7 @@ class MultiUserMailMessage(template.Node):
self
.
nodelist
.
render
(
context
)
messages
.
append
((
recipient
,
context
[
'subject'
],
context
[
'htmlcontent'
],
context
[
'textcontent'
],
context
[
'embeddedmedia'
]))
create_and_send_mail_messages
(
messages
,
context
[
'sender
'
])
create_and_send_mail_messages
(
messages
,
sender_data
=
context
[
'sender'
],
reply_to
=
context
[
'reply_to
'
])
@
register
.
tag
def
email
(
parser
,
token
):
...
...
forum/utils/mail.py
View file @
d0079ac7
...
...
@@ -24,9 +24,9 @@ from forum.context import application_settings
from
forum.utils.html2text
import
HTML2Text
from
threading
import
Thread
def
send_template_email
(
recipients
,
template
,
context
):
def
send_template_email
(
recipients
,
template
,
context
,
sender
=
None
,
reply_to
=
None
):
t
=
loader
.
get_template
(
template
)
context
.
update
(
dict
(
recipients
=
recipients
,
settings
=
settings
,
sender
=
sender
))
context
.
update
(
dict
(
recipients
=
recipients
,
settings
=
settings
,
sender
=
sender
,
reply_to
=
reply_to
))
t
.
render
(
Context
(
context
))
def
create_connection
():
...
...
@@ -44,7 +44,7 @@ def create_connection():
return
connection
def
create_and_send_mail_messages
(
messages
,
sender_data
=
None
):
def
create_and_send_mail_messages
(
messages
,
sender_data
=
None
,
reply_to
=
None
):
if
not
settings
.
EMAIL_HOST
:
return
...
...
@@ -57,8 +57,10 @@ def create_and_send_mail_messages(messages, sender_data=None):
sender
.
append
(
'<%s>'
%
unicode
(
sender_data
[
'email'
]))
sender
=
u'%s <%s>'
%
(
unicode
(
sender_data
[
'name'
]),
unicode
(
sender_data
[
'email'
]))
reply_to
=
unicode
(
settings
.
DEFAULT_REPLY_TO_EMAIL
)
if
reply_to
==
None
:
reply_to
=
unicode
(
settings
.
DEFAULT_REPLY_TO_EMAIL
)
else
:
reply_to
=
unicode
(
reply_to
)
try
:
connection
=
None
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment