% if recently_added: Tautulli ${title} Newsletter
This is preheader text. Some clients will show this text as a preview. % if recently_added.get('movie'): % endif % if recently_added.get('show'): % endif % if recently_added.get('artist'): % endif

Recently Added Movies: ${len(recently_added['movie'])} movie${'s' if len(recently_added['movie']) > 1 else ''}

% for movie in recently_added['movie']:
% if movie['tagline']:
${movie['tagline']}
% endif
${movie['summary'][:410] + (movie['summary'][410:] and '...')}
% endfor

Recently Added TV Shows: ${len(recently_added['show'])} show${'s' if len(recently_added['show']) > 1 else ''} / <% total_episodes = sum(season['episode_count'] for show in recently_added['show'] for season in show['season']) %> ${total_episodes} episode${'s' if total > 1 else ''}

% for show in recently_added['show']:
% if show['season_count'] > 1: ${show['season_count']} seasons / % endif <% total_show_episodes = sum(s['episode_count'] for s in show['season']) %> ${total_show_episodes} episode${'s' if total_show_episodes > 1 else ''}
% for i, season in enumerate(show['season'][:8]): Season ${season['media_index']} · % if season['episode_count'] == 1: Episode ${season['episode'][0]['media_index']} - ${season['episode'][0]['title']} % else: Episodes ${season['episode_range']} % endif % if i < min(show['season_count'], 7):
% elif i == 7 and show['season_count'] > 8: ...plus ${show['season_count'] - 8} more seasons! % endif % endfor
% if show['season_count'] == 1 and show['season'][0]['episode_count'] == 1: ${show['season'][0]['episode'][0]['summary'][:330] + (show['season'][0]['episode'][0]['summary'][330:] and '...')} % else: <% length = max(0, 300 - 50 * (show['season_count'] - 1)) %> % if length: ${show['summary'][:length] + (show['summary'][length:] and '...')} % endif % endif
% endfor

Recently Added Music: ${len(recently_added['artist'])} artist${'s' if len(recently_added['artist']) > 1 else ''} / <% total_albums = sum(artist['album_count'] for artist in recently_added['artist']) %> ${total_albums} album${'s' if total > 1 else ''}

<% album_count = 0 %> % for artist in recently_added['artist']: % for album in artist['album']: <% album_count += 1 %>
${artist['title']} · ${album['track_count']} track${'s' if album['track_count'] > 1 else ''}
% if artist['title'].lower() != 'various artists':
${album['summary'][:150] + (album['summary'][150:] and '...')}
% endif
% endfor % endfor
% endif