>
> mail.send(to=['form.vars.email'],subject='Your Registration
> Details',message=response.render('new_user.html'))
>You have put form.vars.email in quotes, as if that is the literal email address. Just do to=[form.vars.email]. Anthony
>
> mail.send(to=['form.vars.email'],subject='Your Registration
> Details',message=response.render('new_user.html'))
>You have put form.vars.email in quotes, as if that is the literal email address. Just do to=[form.vars.email]. Anthony