Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 1947795ad6f24008e092b00ddd0927545c4f4223)
+++ Jenkinsfile	(revision d3a4564ab4a05273f9cd9254e5d9be4b83034767)
@@ -95,5 +95,38 @@
 		checkout scm
 
-		echo "${currentBuild.changeSets}"
+
+		for (int i = 0; i < changeLogSets.size(); i++) {
+			def entries = changeLogSets[i].items
+			for (int j = 0; j < entries.length; j++) {
+				def entry = entries[j]
+				echo "${entry.commitId} by ${entry.author} on ${new Date(entry.timestamp)}: ${entry.msg}"
+				def files = new ArrayList(entry.affectedFiles)
+				for (int k = 0; k < files.size(); k++) {
+					def file = files[k]
+					echo "  ${file.editType.name} ${file.path}"
+				}
+			}
+		}
+
+		echo """This is an automated email from the Jenkins build machine. It was
+generated because of a git hooks/post-receive script following
+a ref change was pushed to the repository containing
+the project "UNNAMED PROJECT".
+
+The branch ${env.BRANCH_NAME} has been updated.
+
+
+Check console output at ${env.BUILD_URL} to view the results.
+
+- Status --------------------------------------------------------------
+
+BUILD# ${env.BUILD_NUMBER} - ${status}
+
+- Log -----------------------------------------------------------------
+
+-----------------------------------------------------------------------
+Summary of changes:
+
+"""
 	}
 }
