Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 0eb135674c8061f1ba4225b18cbc9ae13a5dbc89)
+++ Jenkinsfile	(revision 094a42c99981350815af095220dde392278ccba2)
@@ -70,7 +70,7 @@
 	finally {
 		//Send email with final results if this is not a full build
-		if( do_sendemail && !bIsSandbox ) {
+		if( do_sendemail ) {
 			echo 'Notifying users of result'
-			email(currentBuild.result, log_needed)
+			email(currentBuild.result, log_needed, bIsSandbox)
 		}
 
@@ -339,5 +339,5 @@
 //===========================================================================================================
 //Standard build email notification
-def email(String status, boolean log) {
+def email(String status, boolean log, boolean bIsSandbox) {
 	//Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
 	//Configurations for email format
@@ -382,5 +382,11 @@
 	def email_to = "cforall@lists.uwaterloo.ca"
 
-	//send email notification
-	emailext body: email_body, subject: email_subject, to: email_to, attachLog: log
-}
+	if( !bIsSandbox ) {
+		//send email notification
+		emailext body: email_body, subject: email_subject, to: email_to, attachLog: log
+	} else {
+		echo "Would send email to: ${email_to}"
+		echo "With title: ${email_subject}"
+		echo "Content: \n${email_body}"
+	}
+}
