lua-resty-mail
A high-level, easy to use, and non-blocking email and SMTP library for OpenResty.
$ opm get GUI/lua-resty-mail
lua-resty-mail
[!CircleCI](https://circleci.com/gh/GUI/lua-resty-mail)
A high-level, easy to use, and non-blocking email and SMTP library for OpenResty.
Features
SMTP authentication, STARTTLS, and SSL support.
Multipart plain text and HTML message bodies.
From, To, Cc, Bcc, Reply-To, and Subject fields (custom headers also supported).
Email addresses in "test@example.com" and "Name <test@example.com>" formats.
File attachments.
Installation
Via OPM:
opm get GUI/lua-resty-mail
Or via LuaRocks:
luarocks install lua-resty-mail
Usage
local mail = require "resty.mail"
local mailer, err = mail.new({
host = "smtp.gmail.com",
port = 587,
starttls = true,
username = "example@gmail.com",
password = "password",
})
if err then
ngx.log(ngx.ERR, "mail.new error: ", err)
return ngx.exit(ngx.HTTP_INTERNAL_SERVER_ERROR)
end
local ok, err = mailer:send({
from = "Master Splinter <splinter@example.com>",
to = { "michelangelo@example.com" },
cc = { "leo@example.com", "Raphael <raph@example.com>", "donatello@example.com" },
subject = "Pizza is here!",
text = "There's pizza in the sewer.",
html = "<h1>There's pizza in the sewer.</h1>",
attachments = {
{
filename = "toppings.txt",
content_type = "text/plain",
content = "1. Cheese\n2. Pepperoni",
},
},
})
if err then
ngx.log(ngx.ERR, "mailer:send error: ", err)
return ngx.exit(ngx.HTTP_INTERNAL_SERVER_ERROR)
end
API
new
syntax: mailer, err = mail.new(options)
Create and return a new mail object. In case of errors, returns nil and a string describing the error.
The options table accepts the following fields:
host: The host of the SMTP server to connect to. (default:localhost)port: The port number on the SMTP server to connect to. (default:25)starttls: Set totrueto ensure STARTTLS is always used to encrypt communication with the SMTP server. If not set, STARTTLS will automatically be enabled if the server supports it (but explicitly setting this to true if your server supports it is preferable to prevent STRIPTLS attacks). This is usually used in conjunction with port 587. (default:nil)ssl: Set totrueto use SMTPS to encrypt communication with the SMTP server (not needed if STARTTLS is being used instead). This is usually used in conjunction with port 465. (default:nil)username: Username to use for SMTP authentication. (default:nil)password: Password to use for SMTP authentication. (default:nil)auth_type: The type of SMTP authentication to perform. Can either beplainorlogin. (default:plainif username and password are present)domain: The domain name presented to the SMTP server during theEHLOconnection and used as part of the Message-ID header. (default:localhost.localdomain)ssl_verify: Whether or not to perform verification of the server's certificate when eithersslorstarttlsis enabled. If this is enabled then configuring the `lua_ssl_trusted_certificate` setting will be required. (default:false)ssl_host: If the hostname of the server's certificate is different than thehostoption, this setting can be used to specify a different host used for SNI and TLS verification when eithersslorstarttlsis enabled. (default: thehostoption's value)timeout_connect: The timeout (in milliseconds) for connecting to the SMTP server. (default: OpenResty's globallua_socket_connect_timeouttimeout, which defaults to 60s)timeout_send: The timeout (in milliseconds) for sending data to the SMTP server. (default: OpenResty's globallua_socket_send_timeouttimeout, which defaults to 60s)timeout_read: The timeout (in milliseconds) for reading data from the SMTP server. (default: OpenResty's globallua_socket_read_timeouttimeout, which defaults to 60s)
mailer:send
syntax: ok, err = mailer:send(data)
Send an email via the SMTP server. This function returns true on success. In case of errors, returns nil and a string describing the error.
The data table accepts the following fields:
from: Email address for theFromheader.reply_to: Email address for theReply-Toheader.to: A table (list-like) of email addresses for theTorecipients.cc: A table (list-like) of email addresses for theCcrecipients.bcc: A table (list-like) of email addresses for theBccrecipients.subject: Message subject.text: Body of the message (plain text version).html: Body of the message (HTML verion).headers: A table of additional headers to set on the message.attachments: A table (list-like) of file attachments for the message. Each attachment must be an table (map-like) with the following fields:filename: The filename of the attachment.content_type: TheContent-Typeof the file attachment.content: The contents of the file attachment as a string.disposition: TheContent-Dispositionof the file attachment. Can either beattachmentorinline. (default:attachment)content_id: TheContent-IDof the file attachment. (default: randomly generated ID)
Development
After checking out the repo, Docker can be used to run the test suite:
docker-compose run --rm app make test
Release Process
To release a new version to LuaRocks and OPM:
Ensure
CHANGELOG.mdis up to date.Update the
_VERSIONinlib/resty/mail.lua.Update the
versionindist.ini.Move the rockspec file to the new version number (
git mv lua-resty-mail-X.X.X-1.rockspec lua-resty-mail-X.X.X-1.rockspec), and update theversionandtagvariables in the rockspec file.Commit and tag the release (
git tag -a vX.X.X -m "Tagging vX.X.X" && git push origin vX.X.X).Run
make release VERSION=X.X.X.
Authors
Nick Muerdter
License
mit
Versions
-
GUI/lua-resty-mail 1.1.0A high-level, easy to use, and non-blocking email and SMTP library for OpenResty. 2023-09-23 01:42:14
-
GUI/lua-resty-mail 1.0.2A high-level, easy to use, and non-blocking email and SMTP library for OpenResty. 2019-02-24 23:13:08
-
GUI/lua-resty-mail 1.0.1A high-level, easy to use, and non-blocking email and SMTP library for OpenResty. 2018-11-26 00:44:39
-
GUI/lua-resty-mail 1.0.0A high-level, easy to use, and non-blocking email and SMTP library for OpenResty. 2017-08-05 16:56:31