Mailroom
Send, receive and process emails.
Example:
alias Mailroom.POP3
{:ok, client} = POP3.connect(server, username, password, port: port, ssl: true)
client
|> POP3.list
|> Enum.each(fn(mail) ->
{:ok, message} = POP3.retrieve(client, mail)
# process message
:ok = POP3.delete(client, mail)
end)
:ok = POP3.reset(client)
:ok = POP3.close(client)
Installation
If available in Hex, the package can be installed as:
Add
mailroomto your list of dependencies inmix.exs:def deps do[{:mailroom, "~> 0.3.0"}]endEnsure
mailroomis started before your application:def application do[applications: [:mailroom]]end