plain.email 0.9.1__tar.gz → 0.10.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plain_email-0.9.1 → plain_email-0.10.0}/.gitignore +2 -0
- {plain_email-0.9.1 → plain_email-0.10.0}/PKG-INFO +1 -1
- {plain_email-0.9.1 → plain_email-0.10.0}/plain/email/message.py +3 -3
- {plain_email-0.9.1 → plain_email-0.10.0}/pyproject.toml +1 -1
- {plain_email-0.9.1 → plain_email-0.10.0}/LICENSE +0 -0
- {plain_email-0.9.1 → plain_email-0.10.0}/README.md +0 -0
- {plain_email-0.9.1 → plain_email-0.10.0}/plain/email/README.md +0 -0
- {plain_email-0.9.1 → plain_email-0.10.0}/plain/email/__init__.py +0 -0
- {plain_email-0.9.1 → plain_email-0.10.0}/plain/email/backends/__init__.py +0 -0
- {plain_email-0.9.1 → plain_email-0.10.0}/plain/email/backends/base.py +0 -0
- {plain_email-0.9.1 → plain_email-0.10.0}/plain/email/backends/console.py +0 -0
- {plain_email-0.9.1 → plain_email-0.10.0}/plain/email/backends/filebased.py +0 -0
- {plain_email-0.9.1 → plain_email-0.10.0}/plain/email/backends/smtp.py +0 -0
- {plain_email-0.9.1 → plain_email-0.10.0}/plain/email/default_settings.py +0 -0
- {plain_email-0.9.1 → plain_email-0.10.0}/plain/email/utils.py +0 -0
|
@@ -568,10 +568,10 @@ class TemplateEmail(EmailMultiAlternatives):
|
|
|
568
568
|
return ""
|
|
569
569
|
|
|
570
570
|
def get_plain_template_name(self):
|
|
571
|
-
return f"
|
|
571
|
+
return f"email/{self.template}.txt"
|
|
572
572
|
|
|
573
573
|
def get_html_template_name(self):
|
|
574
|
-
return f"
|
|
574
|
+
return f"email/{self.template}.html"
|
|
575
575
|
|
|
576
576
|
def get_subject_template_name(self):
|
|
577
|
-
return f"
|
|
577
|
+
return f"email/{self.template}.subject.txt"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|