adding email to cord-dev

Change-Id: I2f4b72cf8ee06cf34bc59a23ed3521a1e1d34d56
diff --git a/Jenkinsfile b/Jenkinsfile
index 0a003f2..7fc6c02 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -53,9 +53,10 @@
             sh 'vagrant ssh -c "cd /cord/build; ./gradlew -PtargetReg=10.90.0.251:5000 -PdeployConfig=config/onlab_develop_pod.yml deploy" corddev'
 
             currentBuild.result = 'SUCCESS'
+            step([$class: 'Mailer', recipients: 'cord-dev@opencord.org', sendToIndividuals: false])
         } catch (err) {
             currentBuild.result = 'FAILURE'
-            step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: 'ali@onlab.us', sendToIndividuals: false])
+            step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: 'cord-dev@opencord.org', sendToIndividuals: false])
         } finally {
             sh 'vagrant destroy -f corddev'
         }