diff src/lib/Notify.luan @ 45:e138343b2c76

unsubscribe and more
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 28 Feb 2025 14:37:11 -0700
parents 818697418dbe
children 246a792adedf
line wrap: on
line diff
--- a/src/lib/Notify.luan	Thu Feb 27 22:50:46 2025 -0700
+++ b/src/lib/Notify.luan	Fri Feb 28 14:37:11 2025 -0700
@@ -22,7 +22,7 @@
 
 local Notify = {}
 
-local url = Http.domain and "https://"..Http.domain.."/" or "http://localhost:8080/"
+local base_url = Http.domain and "https://"..Http.domain or "http://localhost:8080"
 
 local wait = Time.period{seconds=10}
 
@@ -62,13 +62,15 @@
 				local user = get_user_by_id(user_id)
 				-- logger.info("notify "..user.notify_email.." "..user_id)
 				send_mail {
-					From = "Web Chat <chat@luan.software>"
 					To = user.notify_email
 					Subject = "New Messages"
 					body = `%>
 You have received new messages.
 
-<%= url %>
+<%= base_url %>/
+
+To unsubscribe:
+<%= base_url %>/unsubscribe.html?user=<%=user_id%>&password=<%=user.password%>
 <%					`
 				}
 				users[user_id] = nil