Packages

Production-grade inbound SMTP server library for Elixir.

Current section

Files

Jump to
incoming lib incoming.ex
Raw

lib/incoming.ex

defmodule Incoming do
@moduledoc """
Documentation for `Incoming`.
"""
@doc """
Hello world.
## Examples
iex> Incoming.hello()
:world
"""
def hello do
:world
end
end