diff --git a/doc/manual/projects.xml b/doc/manual/projects.xml
index a8ee2b13..ca1598e5 100644
--- a/doc/manual/projects.xml
+++ b/doc/manual/projects.xml
@@ -471,6 +471,26 @@ build_exotic =
+
+ Email Notifications
+
+ Hydra can send email notifications when the status of a build changes. This provides
+ immediate feedback to maintainers or committers when a change causes build failures.
+
+
+
+ The simplest approach to enable Email Notifications is to use the ssmtp package, which
+ simply hands off the emails to another SMTP server. For details on how to configure ssmtp,
+ see the documentation for the networking.defaultMailServer option.
+ To use ssmtp for the Hydra email notifications, add it to the path option of the Hydra services
+ in your /etc/nixos/configuration.nix file:
+
+systemd.services.hydra-queue-runner.path = [ pkgs.ssmtp ];
+systemd.services.hydra-server.path = [ pkgs.ssmtp ];
+
+
+
+