/lua-sendmail

Simple wrapper around luasoket smtp.send

Primary LanguageLuaMIT LicenseMIT

lua-sendmail

Simple wrapper around luasoket smtp.send.
See documentation. ##Usage

local sendmail = require "sendmail"
local from, to, server = 'from@some.mail', 'to@some.mail', '127.0.0.1'

sendmail(from, to, server, {"Subject", [[
  This is mail body.
]],
  file = {
    name = 'message.txt';
    data = 'file content';
  };
})

##Dependences##

Bitdeli Badge