Skip to main content

Mail

SMTP/LMTP related functions

dynamic_loader("nauthilus_mail")
local nauthilus_mail = require("nauthilus_mail")

nauthilus_mail.send_mail

Send an email using SMTP or LMTP

dynamic_loader("nauthilus_mail")
local nauthilus_mail = require("nauthilus_mail")

dynamic_loader("nauthilus_gll_template")
local template = require("template")

local smtp_message = [[
Hallo,

Username: {{username}}
Account: {{account}}

...
]]

local tmpl_data = {
username = request.username, -- Might come from the request object of the calling function
account = request.account, -- Might come from the request object of the calling function
}

local mustache, err_tmpl = template.choose("mustache")

local err_email = nauthilus_mail.send_mail({
lmtp = true,
server = "10.0.0.24",
port = 24,
helo_name = "localhost.localdomain",
from = '"Sicherheitshinweis" <abuse@example.test>',
to = { request.account }, -- Might come from the request object of the calling function
subject = "Some subject",
body = mustache:render(smtp_message, tmpl_data),
})

The table expects the following keys:

NameDescription
usernameUsername for authentication (optional)
passwordPassword for authentication (optional)
fromThe sender including an optional canonical name
toA table of recipients
serverThe address of the mail server
portThe port number of the mail server
helo_nameThe HELO/LHLO name
subjectThe subject of the message
bodyThe body of the message
tlsShould the connection be secured aka SMTPS? true/false
starttlsUse starttls command true/false
lmtpDo we send with LMTP (true) or SMTP (false)?