From 9950234b1aa07fceed0d220297d158be6a067cd2 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sun, 8 Dec 2024 15:30:51 +0000 Subject: wip: sorting out the email sending --- alphabetlearning/payments/models.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'alphabetlearning/payments/models.py') diff --git a/alphabetlearning/payments/models.py b/alphabetlearning/payments/models.py index 3a3ba10..44c8597 100644 --- a/alphabetlearning/payments/models.py +++ b/alphabetlearning/payments/models.py @@ -23,6 +23,7 @@ class EmailVerification(models.Model): def __str__(self): return f"Email verification for {self.email}" + class EmailSignup(models.Model): email = models.EmailField(unique=True) date_added = models.DateTimeField(auto_now_add=True) @@ -30,6 +31,7 @@ class EmailSignup(models.Model): def __str__(self): return self.email + class Product(models.Model): name = models.CharField(max_length=255) stripe_product_id = models.CharField(max_length=100) -- cgit v1.2.3