Skip to content

Repository files navigation

lua-sendmail

Licence

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

localsendmail=require"sendmail"localfrom, 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';
};
})

Send mail with SSL/TLS connection (using LuaSec)

sendmail{
server= {
ssl= {
protocol="sslv3",
verify= {"peer", "fail_if_no_peer_cert"},
options= {"all", "no_sslv2"},
},
address=...;
user=...;
password=...;
},
...
}

Send mail with SSL/TLS connection (using custom SSL connection)

-- I use lua-lluv-ssl library.localut=require"lluv.utils"localssl=require"lluv.ssl"localsocket=require"lluv.ssl.luasocket"-- this is asyncronus callut.corun(sendmail, {
server= {
ssl=ssl.context{
protocol="sslv3",
verify= {"peer", "fail_if_no_peer_cert"},
options= {"all", "no_sslv2"},
},
create=socket.ssl;
address=...;
user=...;
password=...;
},
...
})

Send attached files as single zip archive

localZipWriter=require"ZipWriter"sendmail{
...message= {
...file= {
source=ZipWriter.source(ZipWriter.new(), {
{"file01.txt", "path/to/file01.txt"},
{"file02.txt", "path/to/file02.txt"},
}),
name='files.zip';
}
}
}

##Dependences##

Bitdeli Badge

About

Simple wrapper around luasoket smtp.send

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages