diff options
author | Vitaly Takmazov | 2024-09-28 03:11:38 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2024-09-28 03:11:38 +0300 |
commit | c7642c452b99fe57bfc6c909abdac52815aba6b8 (patch) | |
tree | 33fc4ce9fe2049c414d3a6be083465094b044f0a /src/main | |
parent | 6dbc40194e651c1f7809763766e249cd5f110480 (diff) |
https:// link in email
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/com/juick/www/controllers/Settings.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/juick/www/controllers/Settings.java b/src/main/java/com/juick/www/controllers/Settings.java index 449275c3..11f31efb 100644 --- a/src/main/java/com/juick/www/controllers/Settings.java +++ b/src/main/java/com/juick/www/controllers/Settings.java @@ -194,7 +194,7 @@ public class Settings { message.addRecipient(Message.RecipientType.TO, new InternetAddress(request.getParameter("account"))); message.setSubject("Juick authorization link"); message.setText(String.format("Follow link to attach this email to Juick account:\n" + - "http://juick.com/settings?page=auth-email&code=%s\n\n" + + "https://juick.com/settings?page=auth-email&code=%s\n\n" + "If you don't know, what this mean - just ignore this mail.\n", authCode)); Transport.send(message); result = "<p>Authorization link has been sent to your email. Follow it to proceed.</p>" + |