2004-03-19 07:14:56 +01:00
|
|
|
mesgt = {
|
|
|
|
headers = {
|
|
|
|
to = "D Burgess <db@werx4.com>",
|
|
|
|
subject = "Looking good! (please check headers)"
|
|
|
|
},
|
|
|
|
body = {
|
|
|
|
preamble = "Some attatched stuff",
|
|
|
|
[1] = {
|
2004-03-21 08:50:15 +01:00
|
|
|
body = mime.eol(0, "Testing stuffing.\n.\nGot you.\n.Hehehe.\n")
|
2004-03-19 07:14:56 +01:00
|
|
|
},
|
|
|
|
[2] = {
|
|
|
|
headers = {
|
|
|
|
["content-type"] = 'application/octet-stream; name="luasocket"',
|
|
|
|
["content-disposition"] = 'attachment; filename="luasocket"',
|
|
|
|
["content-transfer-encoding"] = "BASE64"
|
|
|
|
},
|
|
|
|
body = ltn12.source.chain(
|
|
|
|
ltn12.source.file(io.open("luasocket", "rb")),
|
|
|
|
ltn12.filter.chain(
|
|
|
|
mime.encode("base64"),
|
|
|
|
mime.wrap()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
},
|
|
|
|
[3] = {
|
|
|
|
headers = {
|
|
|
|
["content-type"] = 'text/plain; name="testmesg.lua"',
|
|
|
|
["content-disposition"] = 'attachment; filename="testmesg.lua"',
|
|
|
|
["content-transfer-encoding"] = "QUOTED-PRINTABLE"
|
|
|
|
},
|
|
|
|
body = ltn12.source.chain(
|
2004-03-21 08:50:15 +01:00
|
|
|
ltn12.source.file(io.open("testmesg.lua", "rb")),
|
2004-03-19 07:14:56 +01:00
|
|
|
ltn12.filter.chain(
|
|
|
|
mime.normalize(),
|
|
|
|
mime.encode("quoted-printable"),
|
|
|
|
mime.wrap("quoted-printable")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
},
|
|
|
|
epilogue = "Done attaching stuff",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
-- sink = ltn12.sink.file(io.stdout)
|
|
|
|
-- source = ltn12.source.chain(socket.smtp.message(mesgt), socket.smtp.stuff())
|
|
|
|
-- ltn12.pump(source, sink)
|
|
|
|
|
|
|
|
print(socket.smtp.send {
|
2004-03-21 08:50:15 +01:00
|
|
|
rcpt = "<diego@cs.princeton.edu>",
|
2004-03-19 07:14:56 +01:00
|
|
|
from = "<diego@cs.princeton.edu>",
|
|
|
|
source = socket.smtp.message(mesgt),
|
2004-05-25 07:27:44 +02:00
|
|
|
server = "mail.iis.com.br",
|
|
|
|
port = 7
|
2004-03-19 07:14:56 +01:00
|
|
|
})
|