-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5bee5b2
commit 1a15d3a
Showing
50 changed files
with
501 additions
and
483 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ Users wishing to act as SMTP clients (i.e. to send an email) should look at the | |
Simplemail.send | ||
~to_:[Email_address.of_string_exn "[email protected]"] | ||
~subject:"Example message" | ||
(Simplemail.Content.text "This is an example message.") | ||
(Simplemail.Content.text_utf8 "This is an example message.") | ||
#+END_SRC | ||
|
||
~async_smtp~ supports more advanced features including TLS and various modes of | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ module Command : sig | |
| `Rpc of Rpc.Connection.t | ||
] | ||
-> unit Deferred.t) | ||
Param.t | ||
Param.t | ||
-> t | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
(library | ||
(name async_smtp_command) | ||
(public_name async_smtp.command) | ||
(libraries async core email_message async_smtp core_unix.filename_unix) | ||
(libraries async core email_message async_smtp core_unix.filename_unix re2 | ||
core_unix.time_float_unix) | ||
(preprocess | ||
(pps ppx_jane))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
(executables | ||
(modes byte exe) | ||
(names run_async_smtp sendmail inline_image) | ||
(libraries async core async_smtp core_unix.command_unix | ||
core_unix.filename_unix) | ||
(libraries async core async_smtp async_smtp_types core_unix.command_unix | ||
core_unix.filename_unix resource_cache) | ||
(preprocess | ||
(pps ppx_jane))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.