mail/mtt.lua
2023-03-29 14:49:07 +02:00

13 lines
427 B
Lua

mtt.register("send mail", function(callback)
-- create "player2"
local auth_handler = minetest.get_auth_handler()
auth_handler.set_password("player2", "")
-- send a mail
mail.send({from = "player1", to = "player2", subject = "something", body = "blah"})
-- check the receivers inbox
local entry = mail.get_storage_entry("player2")
assert(entry ~= nil and #entry.inbox > 0)
callback()
end)