From a5f4389ebfee4abf95873f290fa9f5a4474c9380 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 29 Jun 2025 21:49:05 -0400 Subject: [PATCH] added forgotten persistent storage setting --- apprise/plugins/email/base.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apprise/plugins/email/base.py b/apprise/plugins/email/base.py index 05fa0e3c..a1999746 100644 --- a/apprise/plugins/email/base.py +++ b/apprise/plugins/email/base.py @@ -41,7 +41,7 @@ from datetime import timezone from ..base import NotifyBase from ...url import PrivacyMode -from ...common import NotifyFormat, NotifyType +from ...common import NotifyFormat, NotifyType, PersistentStoreMode from ...conversion import convert_between from ...utils import pgp as _pgp from ...utils.parse import ( @@ -75,6 +75,10 @@ class NotifyEmail(NotifyBase): # Support attachments attachment_support = True + # Our default is to no not use persistent storage beyond in-memory + # reference; this allows us to auto-generate our config if needed + storage_mode = PersistentStoreMode.AUTO + # Default Notify Format notify_format = NotifyFormat.HTML