1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 13:19:43 +02:00
documize/domain/mail/user.go

139 lines
3.3 KiB
Go
Raw Normal View History

2017-12-26 13:25:10 +00:00
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
//
// You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>.
//
// https://documize.com
package mail
import (
"fmt"
"github.com/documize/community/domain/smtp"
2017-12-26 13:25:10 +00:00
)
// InviteNewUser invites someone new providing credentials, explaining the product and stating who is inviting them.
func (m *Mailer) InviteNewUser(recipient, inviter, url, username, password string) {
method := "InviteNewUser"
m.Initialize()
2017-12-26 13:25:10 +00:00
// check inviter name
if inviter == "Hello You" || len(inviter) == 0 {
inviter = "Your colleague"
}
em := smtp.EmailMessage{}
em.Subject = fmt.Sprintf("%s has invited you to Documize", inviter)
em.ToEmail = recipient
em.ToName = recipient
2017-12-26 13:25:10 +00:00
parameters := struct {
Subject string
Inviter string
URL string
2017-12-26 13:25:10 +00:00
Username string
Password string
}{
em.Subject,
2017-12-26 13:25:10 +00:00
inviter,
url,
recipient,
password,
}
html, err := m.ParseTemplate("mail/invite-new-user.html", parameters)
if err != nil {
m.Runtime.Log.Error(fmt.Sprintf("%s - unable to load email template", method), err)
return
}
em.BodyHTML = html
2017-12-26 13:25:10 +00:00
ok, err := smtp.SendMessage(m.Dialer, m.Config, em)
2017-12-26 13:25:10 +00:00
if err != nil {
m.Runtime.Log.Error(fmt.Sprintf("%s - unable to send email", method), err)
}
if !ok {
m.Runtime.Log.Info(fmt.Sprintf("%s unable to send email"))
}
2017-12-26 13:25:10 +00:00
}
// InviteExistingUser invites a known user to an organization.
func (m *Mailer) InviteExistingUser(recipient, inviter, url string) {
method := "InviteExistingUser"
m.Initialize()
2017-12-26 13:25:10 +00:00
// check inviter name
if inviter == "Hello You" || len(inviter) == 0 {
inviter = "Your colleague"
}
em := smtp.EmailMessage{}
em.Subject = fmt.Sprintf("%s has invited you to their Documize account", inviter)
em.ToEmail = recipient
em.ToName = recipient
2017-12-26 13:25:10 +00:00
parameters := struct {
Subject string
Inviter string
URL string
2017-12-26 13:25:10 +00:00
}{
em.Subject,
2017-12-26 13:25:10 +00:00
inviter,
url,
}
html, err := m.ParseTemplate("mail/invite-existing-user.html", parameters)
if err != nil {
m.Runtime.Log.Error(fmt.Sprintf("%s - unable to load email template", method), err)
return
}
em.BodyHTML = html
2017-12-26 13:25:10 +00:00
ok, err := smtp.SendMessage(m.Dialer, m.Config, em)
2017-12-26 13:25:10 +00:00
if err != nil {
m.Runtime.Log.Error(fmt.Sprintf("%s - unable to send email", method), err)
}
if !ok {
m.Runtime.Log.Info(fmt.Sprintf("%s unable to send email"))
}
2017-12-26 13:25:10 +00:00
}
// PasswordReset sends a reset email with an embedded token.
func (m *Mailer) PasswordReset(recipient, url string) {
method := "PasswordReset"
m.Initialize()
2017-12-26 13:25:10 +00:00
em := smtp.EmailMessage{}
em.Subject = "Documize password reset request"
em.ToEmail = recipient
em.ToName = recipient
2017-12-26 13:25:10 +00:00
parameters := struct {
Subject string
URL string
2017-12-26 13:25:10 +00:00
}{
em.Subject,
2017-12-26 13:25:10 +00:00
url,
}
html, err := m.ParseTemplate("mail/password-reset.html", parameters)
if err != nil {
m.Runtime.Log.Error(fmt.Sprintf("%s - unable to load email template", method), err)
return
}
em.BodyHTML = html
2017-12-26 13:25:10 +00:00
ok, err := smtp.SendMessage(m.Dialer, m.Config, em)
2017-12-26 13:25:10 +00:00
if err != nil {
m.Runtime.Log.Error(fmt.Sprintf("%s - unable to send email", method), err)
}
if !ok {
m.Runtime.Log.Info(fmt.Sprintf("%s unable to send email"))
}
2017-12-26 13:25:10 +00:00
}