Fixed sender's address, to make google happy

master
Salvo 'LtWorf' Tomaselli 2013-12-27 08:34:22 +07:00
parent 7fa10a0228
commit 8157464497
2 changed files with 3 additions and 3 deletions

@ -1,7 +1,7 @@
application: feedback-ltworf application: feedback-ltworf
version: 1 version: 4
runtime: python27 runtime: python27
api_version: 3 api_version: 1
threadsafe: true threadsafe: true
handlers: handlers:

@ -28,7 +28,7 @@ def mail_sender(request, *args, **kwargs):
if kwargs["id"] == "relational": if kwargs["id"] == "relational":
from google.appengine.api import mail from google.appengine.api import mail
mail.send_mail(sender="Feedback service <tiposchi@tiscali.it>", mail.send_mail(sender="Feedback service <noreply@feedback-ltworf.appspotmail.com>",
to="tiposchi@tiscali.it", to="tiposchi@tiscali.it",
subject="Feedback from %s" % kwargs["id"], subject="Feedback from %s" % kwargs["id"],
body=message) body=message)