diff --git a/SubscribesApp/reports.py b/SubscribesApp/reports.py index 885daa5..5d855bb 100644 --- a/SubscribesApp/reports.py +++ b/SubscribesApp/reports.py @@ -19,10 +19,10 @@ def send_mail_for_user_subscribes_that_is_going_to_finish(): Dict = { 'logo': f'{sets["domain"]}/static/img/svg/LogoMobile.svg', - 'project_name': sets['project_name'], 'message_title': subject, 'user_subscribe': user_subscribe } + Dict.update(sets) html = render_to_string('mail/m_user_subscribes_that_is_going_to_finish.html', Dict) from BaseModels.mailSender import admin_send_mail_by_SMTPlib