Dear Piero ,
you can start from here
auth.settings.register_next = URL('Welcome')
def Welcome():
if auth.user:
User_Email = auth.user.email
mail.send(User_Email,'Welcome To website','Welcome To website')
redirect('index')
else:
redirect('index')
regards,
On Friday, October 12, 2012 9:58:20 AM UTC+3, piero crisci wrote:
>
> Hello
> I am trying to realize a little web-app for my society. For the Access
> Control List i set this policy:
>
> auth.settings.registration_requires_verification = True
> auth.settings.registration_requires_approval = True
> auth.settings.reset_password_requires_verification = True
>
> I was wondering if was possible also to set an e-mail notification to the
> admin or to users of a specified group.
> In this way, with the notification, every new registration can be checked
> faster.
> Is there a policy to set that can do this notification or i need to define
> a new function in some library?.
>
>
>
--