mail/webmail/handler_send.lua
BuckarooBanzay be51cff470 field fix
2020-09-20 13:11:38 +02:00

8 lines
231 B
Lua

-- send request from webmail
function mail.handlers.send(sendmail)
-- send mail from webclient
minetest.log("action", "[webmail] sending mail from webclient: " .. sendmail.from .. " -> " .. sendmail.to)
mail.send(sendmail)
end