mailman-elixir / mailman

Mailman provides a clean way of defining mailers in your Elixir applications
https://github.com/mailman-elixir/mailman
Other
203 stars 73 forks source link

Allow setting configuration in Mix.Config #36

Closed mremond closed 8 years ago

mremond commented 8 years ago

You can define from mix.config SMTP config, local SMTP or test config based on value in config.exs:

config :mailman,
  relay: "localhost",
  port: 1025,
  auth: :never
kamilc commented 8 years ago

Thank you @mremond ! This is fantastic