Skip to content

socket.smtp module with STARTTLS support

License

Notifications You must be signed in to change notification settings

vaygr/smtp_stls

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

smtp_stls

socket.smtp module with STARTTLS support.

Dependencies

Usage

local smtp = require("smtp_stls")

local function mail(to, subject, message)
  local settings = {
    from = '[email protected]',
    domain = 'localhost',
    -- user = '...',
    -- password = '...',
    server = '127.0.0.1',
    port = 25,
    starttls = true,
    tls_params = {
      protocol = "tlsv1_3",
      verify = "peer",
      cafile = "/etc/ssl/certs/ca-certificates.crt",
      options = {"all", "no_sslv3"}
    },
  }

  if type(to) ~= 'table' then
    to = { to }
  end

  for index, email in ipairs(to) do
    to[index] = '<' .. tostring(email) .. '>'
  end

  -- fixup from field
  local from = '<' .. tostring(settings.from) .. '>'

  -- message headers and body
  settings.source = smtp.message({
    headers = {
      to = table.concat(to, ', '),
      subject = subject,
      ['From'] = from,
      ['Content-type'] = 'text/html; charset=utf-8',
    },
    body = message
  })

  settings.from = from
  settings.rcpt = to

  return smtp.send(settings)
end

mail("[email protected]", "Subject", "Test letter")

Releases

No releases published

Languages