1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2025-07-26 02:29:47 +02:00

support author notification

This commit is contained in:
lxsang
2020-09-22 19:50:59 +02:00
parent 528ec59e7b
commit aafb565511
4 changed files with 21 additions and 2 deletions

View File

@ -111,7 +111,14 @@ function CommentController:post(...)
rq.comment.id = self.comment.db:lastInsertID()
rq.comment.content = process_md(rq.comment.content)
-- notify the author
if rq.author then
sendmail(rq.author, rq.comment.name ..
" has commented on one of your pages",
rq.comment.name .. " has commented on your page: " ..
rq.page.uri ..
".\nBest regards,\nEmail automatically sent by QuickTalk API")
end
-- send mail to all users of current page
local cmts, cmti = self.comment:select("MIN(id) as id,email",
"pid=" .. rq.comment.pid ..
@ -125,7 +132,7 @@ function CommentController:post(...)
rq.comment.name ..
" has written something on a page that you've commented. \nPlease visit this page: " ..
rq.page.uri ..
" for updates on the discussion.\nBest regard,\nEmail automatically sent by QuickTalk API")
" for updates on the discussion.\nBest regards,\nEmail automatically sent by QuickTalk API")
end
end
rq.comment.email = ""