From 890c9d6bb4668ce7b3e1b031928f40661d7ed7da Mon Sep 17 00:00:00 2001 From: moradabuaqel Date: Tue, 1 Aug 2023 11:41:44 +0300 Subject: [PATCH] LV-21615: change email host --- cherry-picker/src/main/groovy/com/jacky/GmailSender.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cherry-picker/src/main/groovy/com/jacky/GmailSender.groovy b/cherry-picker/src/main/groovy/com/jacky/GmailSender.groovy index 1a64d88..71a6f41 100644 --- a/cherry-picker/src/main/groovy/com/jacky/GmailSender.groovy +++ b/cherry-picker/src/main/groovy/com/jacky/GmailSender.groovy @@ -24,7 +24,7 @@ class GmailSender { String status = '' public GmailSender() { - this.host = 'smtp.googlemail.com' + this.host = 'smtp.gmail.com' this.port = 465 this.email = configuration.gmailUser this.password = decryptPass(configuration.gmailPass)