Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 3410c124cae21016bcb7fdec7f25d89c944fa5a2)
+++ Jenkinsfile	(revision a3f9946a125c228cd165b4d46f73bf6ac44bcc82)
@@ -22,5 +22,24 @@
 	checkout scm
 
-	sh 'printenv'
+	//Configurations for email format
+
+	//Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
+	def project_name = (env.JOB_NAME =~ /(.+)\/.+/)[0][1]
+
+	def email_subject = "[${project_name} git] - branch ${env.BRANCH_NAME} - Build # ${env.BUILD_NUMBER} - BUILD_STATUS!"
+	def email_body = """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
+	       via  GIT_COMMIT (commit)
+	      from  GIT_PREVIOUS_COMMIT (commit)
+
+	Those revisions listed above that are new to this repository have
+	not appeared on any other notification email; so we list those
+	revisions in full, below.
+
+	Check console output at ${env.BUILD_URL} to view the results."""
 
 	//configure the conpilation
