rano/mailer/message/welcome.go
Ankit Patial 26a00c9f7c working on auth.
mailer, basic setup with html template and a dev treansport
2024-11-15 21:42:15 +05:30

17 lines
238 B
Go

package message
type Welcome struct {
Name string
}
func (e *Welcome) Subject() string {
return "Welcome"
}
func (e *Welcome) HtmlBody() (string, error) {
content := `
<p>Welcome {{.Name}}</p>
`
return render(layout, content, e)
}