mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 08:01:16 +00:00
10 lines
199 B
Go
10 lines
199 B
Go
package utils
|
|
|
|
func GetSignatureHTML(name string) string {
|
|
return "<p><b>Best Regards,</b></p><p>" + name + "</p>"
|
|
}
|
|
|
|
func GetSignaturePlain(name string) string {
|
|
return "Best Regards,\n" + name
|
|
}
|