package async_smtp

  1. Overview
  2. Docs
SMTP client and server

Install

Dune Dependency

Authors

Maintainers

Sources

v0.17.0.tar.gz
sha256=c416027c2537e22129f7049bf03ec3f867557d47b194d7e91d72c399fe656b27

Description

Published: 26 May 2024

README

README.org

~async_smtp~ is a library that implements SMTP (Simple Mail Transport Protocol), with
functionality for acting as a client or server. In combination with the ~email_message~
library, it is used as the core of Jane Street's internal MTA (Message Transfer Agent, aka
"email server") ~mailcore~.

The library provides a namespace overlay and is intended to be used by starting your
program with.

#+BEGIN_SRC ocaml
open Async_smtp
#+END_SRC

Users wishing to act as SMTP clients (i.e. to send an email) should look at the
~Simplemail~ module. E.g.:

#+BEGIN_SRC ocaml
  Simplemail.send
    ~to_:[Email_address.of_string_exn "example@example.com"]
    ~subject:"Example message"
    (Simplemail.Content.text "This is an example message.")
#+END_SRC

~async_smtp~ supports more advanced features including TLS and various modes of
SMTP authentication. See the ~sample~ directory for some examples.

If you need help, run into bugs, or have a feature request, you can contact the
developers at <app-mailcore-dev@janestreet.com>.

Dependencies (18)

  1. dune >= "3.11.0"
  2. cryptokit >= "1.16" & < "1.17"
  3. base64 >= "3.4.0"
  4. textutils >= "v0.17" & < "v0.18"
  5. sexp_macro >= "v0.17" & < "v0.18"
  6. resource_cache >= "v0.17" & < "v0.18"
  7. re2 >= "v0.17" & < "v0.18"
  8. ppx_jane >= "v0.17" & < "v0.18"
  9. email_message >= "v0.17" & < "v0.18"
  10. core_unix >= "v0.17" & < "v0.18"
  11. core >= "v0.17" & < "v0.18"
  12. async_ssl >= "v0.17" & < "v0.18"
  13. async_shell >= "v0.17" & < "v0.18"
  14. async_sendfile >= "v0.17" & < "v0.18"
  15. async_inotify >= "v0.17" & < "v0.18"
  16. async_extra >= "v0.17" & < "v0.18"
  17. async >= "v0.17" & < "v0.18"
  18. ocaml >= "5.1.0"

Dev Dependencies

None

Used by

None

Conflicts

None

OCaml

Innovation. Community. Security.