As explained here:
http://web2py.com/books/default/chapter/29/8#Using-the-template-system-to-generate-messages
The following code can be used to render a view file to send via email:
for person in db(db.person).select():
context = dict(person=person)
message = response.render('message.html', context)
mail.send(to=['[email protected]'],
subject='None',
message=message)
I have tried this, but I am not able to place the "message.html" correctly
in the directory hierarchy.
How does reponse.render find the view files, or, even better, how can I
tell response.render where to find my template file?
Thanks,
Daniel
--