diff --git a/notify-bitwarden.jenkins b/notify-bitwarden.jenkins
index 9373797..03974be 100644
--- a/notify-bitwarden.jenkins
+++ b/notify-bitwarden.jenkins
@@ -98,9 +98,9 @@ pipeline {
 
         stage ("Send Mail") {
             steps {
-                if (bitwardenInstalled != bitwardenLatestServer || bitwardenInstalled != bitwardenLatestWeb) {
                     script {
-                        mailBody = """Dear Bitwarden Admin,
+                        if (bitwardenInstalled != bitwardenLatestServer || bitwardenInstalled != bitwardenLatestWeb) {
+                            mailBody = """Dear Bitwarden Admin,
 A new version of bitwarden was released:
   Server: v${bitwardenLatestServer}
   Web:    v${bitwardenLatestWeb}
@@ -119,17 +119,17 @@ Docker Containers
   web:           https://hub.docker.com/r/bitwarden/web/tags
 """
 
-                        echo mailBody
-                        emailext(
-                            body: mailBody,
-                            mimeType: 'text/plain',
-                            replyTo: '${DEFAULT_REPLYTO}',
-                            subject: '${DEFAULT_SUBJECT}',
-                            to: "nhyatt@smoothnet.org",
-                        )
+                            echo mailBody
+                            emailext(
+                                body: mailBody,
+                                mimeType: 'text/plain',
+                                replyTo: '${DEFAULT_REPLYTO}',
+                                subject: '${DEFAULT_SUBJECT}',
+                                to: "nhyatt@smoothnet.org",
+                            )
+                    } else {
+                        println "Bitwarden is up to date!"
                     }
-                } else {
-                    println "Bitwarden is up to date!"
                 }
             }
         }