1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00
antd-web-apps/grs/sendmail.lua

20 lines
537 B
Lua
Raw Normal View History

2018-02-22 15:47:09 +01:00
2018-10-10 14:35:00 +02:00
if not REQUEST.json then
2018-02-22 15:47:09 +01:00
fail("unknown request")
end
2018-10-10 14:35:00 +02:00
local rq = (JSON.decodeString(REQUEST.json))
2018-02-22 15:47:09 +01:00
local to = "xsang.le@gmail.com"
local from = "From: "..rq.email.."\n"
local suject = "Subject: "..rq.subject.."\n"
2018-02-22 19:15:03 +01:00
local content = "Contact request from:"..rq.name.."\n Email: "..rq.email.."\n"..rq.content.."\n"
2018-02-22 15:47:09 +01:00
local cmd = 'echo "'..utils.escape(from..suject..content)..'"| sendmail '..to
2018-02-22 15:48:14 +01:00
--print(cmd)
2018-02-22 15:47:09 +01:00
local r = os.execute(cmd)
if r then
result(r)
else
fail("Cannot send email at the moment, the service may be down")
end