Hello Guys am new to Django

I want to have a model which will have all smtp setup for email.

class EmailSetup(models.Model):
    # model for smtp email EmailSetup
    host = models.CharField(defaut='', blank=False, null=False)
    host_user = models.EmailField(defaut='', blank=False, null=False)
    password = models.CharField(max_length=32, widget=models.PasswordInput)
    port = model.IntegerField()
    email_use_tls = models.BooleanField()


This model will be registered to the admin site.
And admin will be able to save setup and whenever he/she make any 
modification it should updated to the database
All email will be sent from django using the setup above

I would like to know how to implement something like this and on django 
documentation models do not have PasswordFiled()

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/52eba26e-7319-4b4f-b784-c742b6eba021%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to