aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/emails.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r/emails.py')
-rw-r--r--pyaggr3g470r/emails.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/emails.py b/pyaggr3g470r/emails.py
index 61851f22..e9d3b418 100644
--- a/pyaggr3g470r/emails.py
+++ b/pyaggr3g470r/emails.py
@@ -67,9 +67,9 @@ def send_email(mfrom, mto, feed, article):
#
def new_account_notification(user):
try:
- html = """<html>\n<head>\n<title>[pyAggr3g470r] Account activation</title>\n</head>\n<body>\nYour account has been created. Clink on the following to confirm it:%s\n</body>\n</html>""" % \
+ plaintext = """Hello,\n\nYour account has been created. Click on the following link to confirm it:\n%s""" % \
(conf.PLATFORM_URL + 'confirm_account/' + user.activation_key)
- plaintext = utils.clear_string(html)
+ #plaintext = utils.clear_string(html)
message = PMMail(api_key = conf.POSTMARK_API_KEY,
bgstack15