1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-23 21:07:03 +00:00

E-mail sender

This commit is contained in:
Makis Maropoulos
2016-06-01 15:29:38 +03:00
parent 83d3e076a4
commit 7f56cdea8c
6 changed files with 119 additions and 1 deletions

View File

@@ -83,7 +83,10 @@ type (
// Render contains the configs for template and rest configuration
Render Render
// Websocket contains the configs for Websocket's server integration
Websocket Websocket
// Mail contains the config for the mail sender service
Mail Mail
}
// Render struct keeps organise all configuration about rendering, templates and rest currently.
@@ -121,6 +124,7 @@ func Default() Iris {
Sessions: DefaultSessions(),
Render: DefaultRender(),
Websocket: DefaultWebsocket(),
Mail: DefaultMail(),
}
}