Mercurial > email
view mail.urs @ 5:d163044ae493
Fix off-by-one memory allocation error (part II)
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sat, 26 Dec 2015 14:15:54 -0500 |
parents | 33bf7ee17644 |
children |
line wrap: on
line source
(** Ur/Web e-mail sending library *) (* To assemble a message, produce a value in this type standing for header values. *) type headers val empty : headers (* Each of the following may be used at most once in constructing a [headers]. *) val from : string -> headers -> headers val subject : string -> headers -> headers (* The following must be called with single valid e-mail address arguments, and * all such addresses passed are combined into single header values. *) val to : string -> headers -> headers val cc : string -> headers -> headers val bcc : string -> headers -> headers (* Send out a message by connecting to an SMTP server on localhost:25. *) val send : headers -> string (* Plain text message body *) -> option xbody (* Optional HTML message body *) -> transaction unit