From 051326330a188f2d892440274cf842dce98d0096 Mon Sep 17 00:00:00 2001 From: vilmibm Date: Mon, 8 Apr 2024 17:25:52 +0000 Subject: [PATCH] fix smtp host --- email/email.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/email/email.go b/email/email.go index 8588dc2..c1cd187 100644 --- a/email/email.go +++ b/email/email.go @@ -10,7 +10,7 @@ import ( const ( from = "root@tilde.town" - SMTPHost = "smtp.zoho.com" + SMTPHost = "smtp.migadu.com" SMTPPort = 465 )