forked from kataras/iris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
77 lines (61 loc) · 2.18 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package main
import (
"bytes"
"github.com/kataras/go-mailer"
"gopkg.in/kataras/iris.v6"
"gopkg.in/kataras/iris.v6/adaptors/httprouter"
)
func main() {
app := iris.New()
// output startup banner and error logs on os.Stdout
app.Adapt(iris.DevLogger())
// set the router, you can choose gorillamux too
app.Adapt(httprouter.New())
// change these to your own settings
cfg := mailer.Config{
Host: "smtp.mailgun.org",
Username: "[email protected]",
Password: "38304272b8ee5c176d5961dc155b2417",
Port: 587,
}
// change these to your e-mail to check if that works
// create the service
mailService := mailer.New(cfg)
var to = []string{"[email protected]"}
// standalone
//mailService.Send("iris e-mail test subject", "</h1>outside of context before server's listen!</h1>", to...)
//inside handler
app.Get("/send", func(ctx *iris.Context) {
content := `<h1>Hello From Iris web framework</h1> <br/><br/> <span style="color:blue"> This is the rich message body </span>`
err := mailService.Send("iris e-mail just t3st subject", content, to...)
if err != nil {
ctx.HTML(200, "<b> Problem while sending the e-mail: "+err.Error())
} else {
ctx.HTML(200, "<h1> SUCCESS </h1>")
}
})
// send a body by template
app.Get("/send/template", func(ctx *iris.Context) {
// we will not use ctx.Render
// because we don't want to render to the client
// we need the templates' parsed result as raw bytes
// so we make use of the bytes.Buffer which is an io.Writer
// which being expected on app.Render parameter first.
//
// the rest of the parameters are the same and the behavior is the same as ctx.Render,
// except the 'where to render'
buff := &bytes.Buffer{}
app.Render(buff, "body.html", iris.Map{
"Message": " his is the rich message body sent by a template!!",
"Footer": "The footer of this e-mail!",
})
content := buff.String()
err := mailService.Send("iris e-mail just t3st subject", content, to...)
if err != nil {
ctx.HTML(iris.StatusOK, "<b> Problem while sending the e-mail: "+err.Error())
} else {
ctx.HTML(iris.StatusOK, "<h1> SUCCESS </h1>")
}
})
app.Listen(":8080")
}