diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0d19243286f6ae6151bfe6dc471b4aec5ea92ade..08f6a3103693fc9cdb62ebbecc06cf0a1a3613b1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,7 @@
 Journal des modifications
 =========================
 
-1.2.6 (17/10/2019)
+1.2.7 (17/10/2019)
 ------------------
 
 ### Ajout
@@ -11,6 +11,14 @@ Journal des modifications
     - l'INE sera rappatrié via les Web Services
 
 
+1.2.6 (15/10/2019)
+------------------
+
+### Corrections
+
+- L'envoi de mail concernant les résultats de thèses modifiés échouait à cause d'une erreur dans le chemin de la vue.
+
+
 1.2.5 (04/10/2019)
 ------------------
 
diff --git a/config/autoload/version.global.php b/config/autoload/version.global.php
index 7ea17e4f88748457afe493d3b80877f44cae2351..a8e021b0b3629ca8fb4246eaefe909b897bd4b4c 100644
--- a/config/autoload/version.global.php
+++ b/config/autoload/version.global.php
@@ -2,9 +2,9 @@
 return [
     'unicaen-app' => [
         'app_infos' => [
-            'version' => '1.2.6',
+            'version' => '1.2.7',
             'date' => '17/10/2019',
         ],
     ],
-    'comment' => 'Fichier généré le 17/10/2019 à 15:18:16 avec /home/metivier/MyWeb/sygal/bump-version',
+    'comment' => 'Fichier généré le 17/10/2019 à 15:26:01 avec /home/metivier/MyWeb/sygal/bump-version',
 ];
diff --git a/doc/release-notes/v1.2.6.md b/doc/release-notes/v1.2.6.md
index dcdef49d3466fb74cf3224b0bf1f71f76337b917..6b8460796a133416f30c809532a713f21de03733 100644
--- a/doc/release-notes/v1.2.6.md
+++ b/doc/release-notes/v1.2.6.md
@@ -1,4 +1,4 @@
-# Version 1.2.5
+# Version 1.2.6
 
 ## 1. Sur le serveur d'application
   
diff --git a/doc/release-notes/v1.2.7.md b/doc/release-notes/v1.2.7.md
new file mode 100644
index 0000000000000000000000000000000000000000..6b8460796a133416f30c809532a713f21de03733
--- /dev/null
+++ b/doc/release-notes/v1.2.7.md
@@ -0,0 +1,19 @@
+# Version 1.2.6
+
+## 1. Sur le serveur d'application
+  
+- Placez-vous dans le répertoire de l'application puis lancez la commande suivante 
+pour installer la nouvelle version :
+
+```bash
+git fetch --tags && git checkout --force 1.2.6 && \
+bash ./install.sh
+```
+
+- Selon le moteur PHP que vous avez installé, rechargez le service, exemple :
+  - php7.0-fpm         : `service php7.0-fpm reload`
+  - apache2-mod-php7.0 : `service apache2 reload`
+
+## 2. Dans la base de données
+
+Néant.
diff --git a/module/Application/src/Application/Notification/CorrectionAttendueUpdatedNotification.php b/module/Application/src/Application/Notification/CorrectionAttendueUpdatedNotification.php
index d4af37a8b44e5821d20b5001239be38529e55698..2b9c88c974b1fa2e8120a38bec89ef5479b25b0e 100644
--- a/module/Application/src/Application/Notification/CorrectionAttendueUpdatedNotification.php
+++ b/module/Application/src/Application/Notification/CorrectionAttendueUpdatedNotification.php
@@ -10,7 +10,7 @@ class CorrectionAttendueUpdatedNotification extends Notification
 {
     use TheseAwareTrait;
 
-    protected $templatePath = 'notif-depot-version-corrigee-attendu';
+    protected $templatePath = 'application/these/mail/notif-depot-version-corrigee-attendu';
 
     /**
      * Initialisation, préparation, etc. nécessaires avant de pouvoir envoyer la notification.