Use absolute URL

pull/6/head
Yax 9 years ago
parent 585300cd4a
commit 822fb1460a

@ -74,6 +74,8 @@ def new_comment(data):
content=message, created=created, published=None) content=message, created=created, published=None)
comment.save() comment.save()
article_url = = "http://" + site.url + url
# render email body template # render email body template
comment_list = ( comment_list = (
'author: %s' % author_name, 'author: %s' % author_name,
@ -87,7 +89,7 @@ def new_comment(data):
) )
comment_text = '\n'.join(comment_list) comment_text = '\n'.join(comment_list)
email_body = get_template('new_comment').render( email_body = get_template('new_comment').render(
url=url, comment=comment_text) url=article_url, comment=comment_text)
# send email # send email
subject = '%s: [%d:%s]' % (site.name, comment.id, token) subject = '%s: [%d:%s]' % (site.name, comment.id, token)

Loading…
Cancel
Save