This commit is contained in:
Chris Mann 2023-07-23 10:56:25 +02:00
parent b6bcb80f0c
commit f0a3f5ea67
2 changed files with 16 additions and 16 deletions

26
gpas.go
View file

@ -46,18 +46,18 @@ func passwordLost(user User, config *ConfigFile, ldapConn *ldap.Conn) error {
log.Printf("Il n'y a pas d'utilisateur qui correspond %v", searchReq)
return errors.New("Il n'y a pas d'utilisateur qui correspond")
}
// Préparation du courriel à envoyer
// code := "GPas"
// templateMail := template.Must(template.ParseFiles(templatePath + "/invite_mail.txt"))
// buf := bytes.NewBuffer([]byte{})
// templateMail.Execute(buf, &CodeMailFields{
// To: user.OtherMailbox,
// From: config.MailFrom,
// InviteFrom: "GPas",
// Code: code,
// WebBaseAddress: config.WebAddress,
// })
message := []byte("Hi " + user.OtherMailbox)
Préparation du courriel à envoyer
code := "GPas"
templateMail := template.Must(template.ParseFiles(templatePath + "/invite_mail.txt"))
buf := bytes.NewBuffer([]byte{})
templateMail.Execute(buf, &CodeMailFields{
To: user.OtherMailbox,
From: config.MailFrom,
InviteFrom: "GPas",
Code: code,
WebBaseAddress: config.WebAddress,
})
// message := []byte("Hi " + user.OtherMailbox)
log.Printf("Sending mail to: %s", user.OtherMailbox)
// var auth sasl.Client = nil
// if config.SMTPUsername != "" {
@ -65,7 +65,7 @@ func passwordLost(user User, config *ConfigFile, ldapConn *ldap.Conn) error {
// }
auth := smtp.PlainAuth("", config.SMTPUsername, config.SMTPPassword, config.SMTPServer)
log.Printf("auth: %v", auth)
err = smtp.SendMail(config.SMTPServer+":587", auth, config.SMTPUsername, []string{user.OtherMailbox}, message)
err = smtp.SendMail(config.SMTPServer+":587", auth, config.SMTPUsername, []string{user.OtherMailbox}, buf)
if err != nil {
log.Printf("email send error %v", err)
return err

View file

@ -1,13 +1,13 @@
From: {{.From}}
To: {{.To}}
Subject: Code d'invitation Deuxfleurs
Subject: Code d'invitation GVoisin.com
Content-type: text/plain; charset=utf-8
Vous avez été invité à créer un compte sur Deuxfleurs par {{.InviteFrom}} :)
Vous avez été invité à créer un compte sur GVoisin.com par {{.InviteFrom}} :)
Pour créer votre compte, rendez-vous à l'addresse suivante:
{{.WebBaseAddress}}/invitation/{{.Code}}
À bientôt sur Deuxfleurs !
À bientôt sur GVoisin.com !