mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-19 08:03:27 +02:00
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
import media_manager.notification.utils
|
|
from media_manager.notification.schemas import MessageNotification
|
|
from media_manager.notification.service_providers.abstractNotificationServiceProvider import (
|
|
AbstractNotificationServiceProvider,
|
|
)
|
|
from media_manager.config import AllEncompassingConfig
|
|
|
|
|
|
class EmailNotificationServiceProvider(AbstractNotificationServiceProvider):
|
|
def __init__(self):
|
|
self.config = AllEncompassingConfig().notifications.email_notifications
|
|
|
|
def send_notification(self, message: MessageNotification) -> bool:
|
|
subject = "MediaManager - " + message.title
|
|
html = f"""\
|
|
<html>
|
|
<body>
|
|
<br>
|
|
{message.message}
|
|
<br>
|
|
<br>
|
|
This is an automated message from MediaManager.</p>
|
|
</body>
|
|
</html>
|
|
"""
|
|
|
|
for email in self.config.emails:
|
|
media_manager.notification.utils.send_email(
|
|
subject=subject, html=html, addressee=email
|
|
)
|
|
|
|
return True
|