diff --git a/data/interfaces/newsletters/recently_added.html b/data/interfaces/newsletters/recently_added.html index ed80cf01..bae06ee8 100644 --- a/data/interfaces/newsletters/recently_added.html +++ b/data/interfaces/newsletters/recently_added.html @@ -56,9 +56,9 @@ display: block; margin: 0 auto !important; /* makes it centered */ - max-width: 1046px; + max-width: 1042px; padding: 10px; - width: 1046px; + width: 1042px; } /* This should also be a block element, so that it will fill 100% of the .container */ @@ -66,7 +66,7 @@ box-sizing: border-box; display: block; margin: 0 auto; - max-width: 1046px; + max-width: 1042px; padding: 10px; } @@ -270,7 +270,12 @@ width: 100%; height: 100px; } + .server-name { + font-size: 30px; + text-align: center; + } .dates { + color: #aaaaaa; font-size: 20px; text-align: center; } @@ -305,7 +310,7 @@ .sub-header-bar { width: 200px; border-top: 1px solid #E5A00D; - margin-top: 25px; + margin-top: 15px; margin-bottom: 25px; } .sub-header-title { @@ -490,8 +495,11 @@ margin-bottom: 10px !important; } + table[class=body] .server-name { + font-size: 20px !important; + } table[class=body] .dates { - font-size: 16px !important; + font-size: 14px !important; } table[class=body] .sub-header > div { font-size: 20px !important; @@ -571,8 +579,8 @@ - @@ -591,7 +600,7 @@ % if recently_added.get('movie'):
-
+
Recently Added Movies
@@ -669,7 +678,7 @@ % if recently_added.get('show'):
-
+
Recently Added TV Shows
@@ -784,7 +793,7 @@ % if recently_added.get('artist'):
-
+
Recently Added Music
diff --git a/data/interfaces/newsletters/recently_added_master.html b/data/interfaces/newsletters/recently_added_master.html index 63b063e1..2b76ac21 100644 --- a/data/interfaces/newsletters/recently_added_master.html +++ b/data/interfaces/newsletters/recently_added_master.html @@ -56,9 +56,9 @@ display: block; margin: 0 auto !important; /* makes it centered */ - max-width: 1046px; + max-width: 1042px; padding: 10px; - width: 1046px; + width: 1042px; } /* This should also be a block element, so that it will fill 100% of the .container */ @@ -66,7 +66,7 @@ box-sizing: border-box; display: block; margin: 0 auto; - max-width: 1046px; + max-width: 1042px; padding: 10px; } @@ -270,7 +270,12 @@ width: 100%; height: 100px; } + .server-name { + font-size: 30px; + text-align: center; + } .dates { + color: #aaaaaa; font-size: 20px; text-align: center; } @@ -305,7 +310,7 @@ .sub-header-bar { width: 200px; border-top: 1px solid #E5A00D; - margin-top: 25px; + margin-top: 15px; margin-bottom: 25px; } .sub-header-title { @@ -490,8 +495,11 @@ margin-bottom: 10px !important; } + table[class=body] .server-name { + font-size: 20px !important; + } table[class=body] .dates { - font-size: 16px !important; + font-size: 14px !important; } table[class=body] .sub-header > div { font-size: 20px !important; @@ -583,6 +591,7 @@
diff --git a/plexpy/newsletters.py b/plexpy/newsletters.py index ad8c62f5..4407a260 100644 --- a/plexpy/newsletters.py +++ b/plexpy/newsletters.py @@ -389,7 +389,7 @@ class RecentlyAdded(Newsletter): elif not isinstance(self.config['incl_libraries'], list): self.config['incl_libraries'] = [self.config['incl_libraries']] - self._DEFAULT_EMAIL_CONFIG['subject'] = 'Recently Added to Plex! ({end_date})' + self._DEFAULT_EMAIL_CONFIG['subject'] = 'Recently Added to Plex ({server_name})! ({end_date})' date_format = helpers.momentjs_to_arrow(plexpy.CONFIG.DATE_FORMAT)
-
+
+
@@ -583,7 +591,8 @@