mirror of https://github.com/caronc/apprise
added forgotten persistent storage setting
parent
70667a5c28
commit
dc0a992bad
|
@ -36,7 +36,7 @@ import re
|
||||||
import smtplib
|
import smtplib
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
from ...common import NotifyFormat, NotifyType
|
from ...common import NotifyFormat, NotifyType, PersistentStoreMode
|
||||||
from ...conversion import convert_between
|
from ...conversion import convert_between
|
||||||
from ...locale import gettext_lazy as _
|
from ...locale import gettext_lazy as _
|
||||||
from ...logger import logger
|
from ...logger import logger
|
||||||
|
@ -81,6 +81,10 @@ class NotifyEmail(NotifyBase):
|
||||||
# Support attachments
|
# Support attachments
|
||||||
attachment_support = True
|
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
|
# Default Notify Format
|
||||||
notify_format = NotifyFormat.HTML
|
notify_format = NotifyFormat.HTML
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue