mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
462 B
15 lines
462 B
from django.conf import settings
|
|
from django.core.mail import send_mail
|
|
|
|
from .base import BackendBase
|
|
|
|
|
|
class Email(BackendBase):
|
|
account_field = 'email'
|
|
is_enable_field_in_settings = 'EMAIL_HOST_USER'
|
|
|
|
def send_msg(self, users, subject, message):
|
|
from_email = settings.EMAIL_FROM or settings.EMAIL_HOST_USER
|
|
accounts, __, __ = self.get_accounts(users)
|
|
send_mail(subject, message, from_email, accounts, html_message=message)
|