mirror of
https://github.com/nabbar/golib.git
synced 2025-12-24 11:51:02 +08:00
* implement SMTP lib interface * check number of sent mail in a time lapse before sending new mail * if time since last reset is over, reset counter * add feature to call a user function on each counter reset - Pkg SMTP : Fix race detection & segFault - Pkg Mailer : add new function to parse all template value with the given map[string]string
112 lines
2.6 KiB
Go
112 lines
2.6 KiB
Go
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2020 Nicolas JUHEL
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
package mailer
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/matcornic/hermes/v2"
|
|
liberr "github.com/nabbar/golib/errors"
|
|
)
|
|
|
|
type Mailer interface {
|
|
Clone() Mailer
|
|
|
|
SetTheme(t Themes)
|
|
GetTheme() Themes
|
|
|
|
SetTextDirection(d TextDirection)
|
|
GetTextDirection() TextDirection
|
|
|
|
SetBody(b *hermes.Body)
|
|
GetBody() *hermes.Body
|
|
|
|
SetCSSInline(disable bool)
|
|
|
|
SetName(name string)
|
|
GetName() string
|
|
|
|
SetCopyright(copy string)
|
|
GetCopyright() string
|
|
|
|
SetLink(link string)
|
|
GetLink() string
|
|
|
|
SetLogo(logoUrl string)
|
|
GetLogo() string
|
|
|
|
SetTroubleText(text string)
|
|
GetTroubleText() string
|
|
|
|
ParseData(data map[string]string)
|
|
|
|
GenerateHTML() (*bytes.Buffer, liberr.Error)
|
|
GeneratePlainText() (*bytes.Buffer, liberr.Error)
|
|
}
|
|
|
|
func New() Mailer {
|
|
return &email{
|
|
t: ThemeDefault,
|
|
d: LeftToRight,
|
|
p: hermes.Product{
|
|
Name: "",
|
|
Link: "",
|
|
Logo: "",
|
|
Copyright: "",
|
|
TroubleText: "",
|
|
},
|
|
b: &hermes.Body{},
|
|
c: false,
|
|
}
|
|
}
|
|
|
|
func (e *email) Clone() Mailer {
|
|
return &email{
|
|
p: hermes.Product{
|
|
Name: e.p.Name,
|
|
Link: e.p.Link,
|
|
Logo: e.p.Logo,
|
|
Copyright: e.p.Copyright,
|
|
TroubleText: e.p.TroubleText,
|
|
},
|
|
b: &hermes.Body{
|
|
Name: e.b.Name,
|
|
Intros: e.b.Intros,
|
|
Dictionary: e.b.Dictionary,
|
|
Table: e.b.Table,
|
|
Actions: e.b.Actions,
|
|
Outros: e.b.Outros,
|
|
Greeting: e.b.Greeting,
|
|
Signature: e.b.Signature,
|
|
Title: e.b.Title,
|
|
FreeMarkdown: e.b.FreeMarkdown,
|
|
},
|
|
t: e.t,
|
|
d: e.d,
|
|
c: e.c,
|
|
}
|
|
}
|