Added global BCC setting for emails

This commit is contained in:
John Mullins
2024-06-12 11:43:49 +10:00
parent 98019055f1
commit f37827fd9d
2 changed files with 12 additions and 5 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ from django.db import models
class Setting(models.Model):
name = models.CharField(max_length=20, unique=True)
value = models.CharField(max_length=20, blank=True)
value = models.CharField(max_length=50, blank=True)
def __str__(self):
return self.name