views:

100

answers:

1

i have made app using google app engine in pythonof weekly Project and assessment report submitting... i want to check that on Friday who have submitted the report and who don't just send the scheduled notification mail that he haven't submitted the report in last week...

**

but i dont want to send the notification mail on monday who have submitted the report in last week, just to those who haven't submitted the report

**

so please suggest me some idea for that...

+2  A: 

You can schedule the task using the App Engine Scheduled Tasks feature.

You'll need to add an entry to the cron.yaml file for your application. Something like:

cron:
- description: friday mailout
  url: /mail/weekly
  schedule: every friday 09:00

You can send email using the App Engine Mail API.

Dave Webb