I have a model user

class User(models.Model):
    name = models.CharField(_("name"), max_length=40)
    paternals = models.CharField(max_length=40)
    maternals = models.CharField(max_length=40)
    email = models.EmailField("e-mail")
    phone = models.IntegerField(_("phone number"))
    rol = models.IntegerField(_("company number"))

I need to know when a new user is added to the system, and send a e-
mail report,


I know how send a mail. but I don't know where or when do it

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to