diff --git a/app/controllers/moderations_controller.rb b/app/controllers/moderations_controller.rb
index f48278b07c2bde82df19337705ceeb811ea9c515..af93ea926f595f6d1be482c5b233d67327c13d6c 100644
--- a/app/controllers/moderations_controller.rb
+++ b/app/controllers/moderations_controller.rb
@@ -37,7 +37,10 @@ class ModerationsController < ApplicationController
   def accept
     respond_to do |format|
       if @moderation.update(moderated: 1)
-        # Send an update mail to its author
+        # Send an acceptation mail to its author
+        EventMailer.accept(@moderation, current_user).deliver
+
+        # Send an acceptation mail to moderators
         ModerationMailer.accept(@moderation, current_user).deliver
 
         format.html { redirect_to moderations_path, notice: t('.ok') }