Support follow-up posting and e-mail notification
[hcoop/portal.git] / mail.sml
CommitLineData
edeb626e
AC
1structure Mail :> MAIL =
2struct
3
4type session = (TextIO.instream, TextIO.outstream) Unix.proc
5
6fun mopen () = Unix.execute ("/usr/sbin/exim4", ["-t"])
7
8fun mwrite (ses, s) = TextIO.output (Unix.textOutstreamOf ses, s)
9
10fun mclose ses = Unix.reap ses
11
12end