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

149 lines
3.7 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, inviterName, inviterEmail, url, username, password string) {
2017-12-26 13:25:10 +00:00
method := "InviteNewUser"
m.Initialize()
2017-12-26 13:25:10 +00:00
// check inviter name
if inviterName == "Hello You" || len(inviterName) == 0 {
inviterName = "Your colleague"
2017-12-26 13:25:10 +00:00
}
em := smtp.EmailMessage{}
em.Subject = fmt.Sprintf("%s has invited you to Documize", inviterName)
em.ToEmail = recipient
em.ToName = recipient
em.ReplyTo = inviterEmail
em.ReplyName = inviterName
2017-12-26 13:25:10 +00:00
parameters := struct {
Subject string
Inviter string
URL string
Username string
Password string
SenderEmail string
2017-12-26 13:25:10 +00:00
}{
em.Subject,
inviterName,
2017-12-26 13:25:10 +00:00
url,
recipient,
password,
m.Config.SenderEmail,
2017-12-26 13:25:10 +00:00
}
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", method))
}
2017-12-26 13:25:10 +00:00
}
// InviteExistingUser invites a known user to an organization.
func (m *Mailer) InviteExistingUser(recipient, inviterName, inviterEmail, url string) {
2017-12-26 13:25:10 +00:00
method := "InviteExistingUser"
m.Initialize()
2017-12-26 13:25:10 +00:00
// check inviter name
if inviterName == "Hello You" || len(inviterName) == 0 {
inviterName = "Your colleague"
2017-12-26 13:25:10 +00:00
}
em := smtp.EmailMessage{}
em.Subject = fmt.Sprintf("%s has invited you to their Documize account", inviterName)
em.ToEmail = recipient
em.ToName = recipient
em.ReplyTo = inviterEmail
em.ReplyName = inviterName
2017-12-26 13:25:10 +00:00
parameters := struct {
Subject string
Inviter string
URL string
SenderEmail string
2017-12-26 13:25:10 +00:00
}{
em.Subject,
inviterName,
2017-12-26 13:25:10 +00:00
url,
m.Config.SenderEmail,
2017-12-26 13:25:10 +00:00
}
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
SenderEmail string
2017-12-26 13:25:10 +00:00
}{
em.Subject,
2017-12-26 13:25:10 +00:00
url,
m.Config.SenderEmail,
2017-12-26 13:25:10 +00:00
}
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
}