handler_send.lua 231 B

12345678
  1. -- send request from webmail
  2. function mail.handlers.send(sendmail)
  3. -- send mail from webclient
  4. minetest.log("action", "[webmail] sending mail from webclient: " .. sendmail.from .. " -> " .. sendmail.to)
  5. mail.send(sendmail)
  6. end