2025-02-25 09:21:50 -03:00

17 lines
790 B
Python

from django.db import models
import uuid
class EmailSettings(models.Model):
name = models.CharField(default='email_settings', max_length=20, unique=True)
smtp_username = models.CharField(max_length=100, blank=True, null=True)
smtp_password = models.CharField(max_length=100, blank=True, null=True)
smtp_host = models.CharField(max_length=100, blank=True, null=True)
smtp_port = models.IntegerField(default=587)
smtp_encryption = models.CharField(default='tls', choices=(('ssl', 'SSL'), ('tls', 'TLS')), max_length=3)
smtp_from_address = models.EmailField(blank=True, null=True)
uuid = models.UUIDField(default=uuid.uuid4, editable=False, unique=True)
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)