From 07700094439feabe34690a293b88c4573e2c95c6 Mon Sep 17 00:00:00 2001 From: SDE Date: Fri, 28 Jun 2024 18:10:35 +0300 Subject: [PATCH] 1.3.3 send_mail_for_user_subscribes_that_is_going_to_finish --- SubscribesApp/reports.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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