X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=reminder.py;h=7b7c07fe65de7cb2e3e262c4d479083f15e72176;hb=HEAD;hp=e379081cab8876037278abc53e0fb4c51b17f9e1;hpb=ff3647893d53d0c27a90df1706e7c699535dd93d;p=cavote.git diff --git a/reminder.py b/reminder.py index e379081..7b7c07f 100644 --- a/reminder.py +++ b/reminder.py @@ -36,7 +36,7 @@ for vote in c.execute('select id, id_group, date_end, title from votes where is_ print userchoice if userchoice is None: #user didn't vote yet - link = "http://vote.ffdn.org/vote/%d" % vote[0] + link = VOTE_URL % vote[0] BODY = string.join(( "From: %s" % EMAIL, "To: %s" % user[1], @@ -56,11 +56,11 @@ for vote in c.execute('select id, id_group, date_end, title from votes where is_ server = smtplib.SMTP(SMTP_SERVER) print EMAIL print user[1] - print BODY + print BODY.encode('utf-8') server.sendmail(EMAIL, user[1], BODY.encode('utf-8')) server.quit() else: - link = "http://vote.ffdn.org/vote/%d" % vote[0] + link = VOTE_URL % vote[0] BODY = string.join(( "From: %s" % EMAIL, "To: %s" % user[1],