From 219bfbda12871a1fd30986271e4c751580b5caf7 Mon Sep 17 00:00:00 2001 From: PCoder Date: Sun, 12 May 2019 20:13:54 +0200 Subject: [PATCH] Use the correct email template For notifying the user about ssh key was successfully added --- datacenterlight/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datacenterlight/tasks.py b/datacenterlight/tasks.py index 6bf14825..0ce71577 100644 --- a/datacenterlight/tasks.py +++ b/datacenterlight/tasks.py @@ -278,7 +278,7 @@ def save_ssh_key_in_vm_template_task(self, user, vm_id, ssh_key_str): 'subject': context.get('page_header'), 'to': user.get('email'), 'context': context, - 'template_name': 'new_booked_vm', + 'template_name': 'ssh_key_added_to_vm', 'template_path': 'hosting/emails/', 'from_address': settings.DCL_SUPPORT_FROM_ADDRESS, }