|
|
@ -2,8 +2,8 @@ from couchpotato.core.helpers.encoding import toUnicode |
|
|
|
from couchpotato.core.logger import CPLog |
|
|
|
from couchpotato.core.notifications.base import Notification |
|
|
|
from email.mime.text import MIMEText |
|
|
|
import traceback |
|
|
|
import smtplib |
|
|
|
import traceback |
|
|
|
|
|
|
|
log = CPLog(__name__) |
|
|
|
|
|
|
@ -13,7 +13,7 @@ class Email(Notification): |
|
|
|
def notify(self, message = '', data = {}, listener = None): |
|
|
|
if self.isDisabled(): return |
|
|
|
|
|
|
|
# Extract all the settings from the database |
|
|
|
# Extract all the settings from settings |
|
|
|
from_address = self.conf('from') |
|
|
|
to = self.conf('to') |
|
|
|
smtp_server = self.conf('smtp_server') |
|
|
@ -23,17 +23,13 @@ class Email(Notification): |
|
|
|
|
|
|
|
# Make the basic message |
|
|
|
message = MIMEText(toUnicode(message)) |
|
|
|
message['Subject'] = self.conf('subject') |
|
|
|
message['Subject'] = self.default_title |
|
|
|
message['From'] = from_address |
|
|
|
message['To'] = to |
|
|
|
|
|
|
|
try: |
|
|
|
# Open the SMTP connection, via SSL if requested |
|
|
|
if ssl == 1: |
|
|
|
mailserver = smtplib.SMTP_SSL(smtp_server) |
|
|
|
else: |
|
|
|
mailserver = smtplib.SMTP(smtp_server) |
|
|
|
|
|
|
|
mailserver = smtplib.SMTP_SSL(smtp_server) if ssl == 1 else smtplib.SMTP(smtp_server) |
|
|
|
|
|
|
|
# Check too see if an login attempt should be attempted |
|
|
|
if len(smtp_user) > 0: |
|
|
|