What's not working? One thing I noticed is that the URL in the email is not 
going to work because URL() creates a relative URL (/register/uuid). You'll 
need to do something like:

message='click http://mysite.com/register/%s to register' % uuid
or
message='click <a href=http://mysite.com/register/%s>register</a> 
to register' % uuid

Reply via email to