Exports
sendMail(to,from,subject,body)
local sent, output = exports['av_mail']:sendMail({ -- to = "boss@lspd.com", -- single recipient example to = { -- multiple recipients example, should be a table "chief@lspd.com", "dispatch@lspd.com", "officer.doe@lspd.com", }, from = "system@avscripts.com", subject = "Shift update", body = "The evening shift starts one hour earlier today.", })
Last updated