8 lines
231 B
Lua
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.src .. " -> " .. sendmail.dst)
|
|
mail.send(sendmail)
|
|
end
|