// Send user register mail with active code func SendRegisterMail(r *middleware.Render, user *models.User) { code := CreateUserActiveCode(user, nil) subject := "Register success, Welcome" data := GetMailTmplData(user) data["Code"] = code body, err := r.HTMLString("mail/auth/register_success", data) if err != nil { log.Error("mail.SendRegisterMail(fail to render): %v", err) return } msg := NewMailMessage([]string{user.Email}, subject, body) msg.Info = fmt.Sprintf("UID: %d, send register mail", user.Id) SendAsync(&msg) }
// Send email verify active email. func SendActiveMail(r *middleware.Render, user *models.User) { code := CreateUserActiveCode(user, nil) subject := "Verify your e-mail address" data := GetMailTmplData(user) data["Code"] = code body, err := r.HTMLString("mail/auth/active_email", data) if err != nil { log.Error("mail.SendActiveMail(fail to render): %v", err) return } msg := NewMailMessage([]string{user.Email}, subject, body) msg.Info = fmt.Sprintf("UID: %d, send email verify mail", user.Id) SendAsync(&msg) }
// Send reset password email. func SendResetPasswdMail(r *middleware.Render, u *models.User) { code := CreateUserActiveCode(u, nil) subject := "Reset your password" data := GetMailTmplData(u) data["Code"] = code body, err := r.HTMLString("mail/auth/reset_passwd", data) if err != nil { log.Error("mail.SendResetPasswdMail(fail to render): %v", err) return } msg := NewMailMessage([]string{u.Email}, subject, body) msg.Info = fmt.Sprintf("UID: %d, send reset password email", u.Id) SendAsync(&msg) }
// SendCollaboratorMail sends mail notification to new collaborator. func SendCollaboratorMail(r *middleware.Render, u, owner *models.User, repo *models.Repository) error { subject := fmt.Sprintf("%s added you to %s", owner.Name, repo.Name) data := GetMailTmplData(nil) data["RepoLink"] = path.Join(owner.Name, repo.Name) data["Subject"] = subject body, err := r.HTMLString("mail/notify/collaborator", data) if err != nil { return fmt.Errorf("mail.SendCollaboratorMail(fail to render): %v", err) } msg := NewMailMessage([]string{u.Email}, subject, body) msg.Info = fmt.Sprintf("UID: %d, send register mail", u.Id) SendAsync(&msg) return nil }
// SendIssueMentionMail sends mail notification for who are mentioned in issue. func SendIssueMentionMail(r *middleware.Render, u, owner *models.User, repo *models.Repository, issue *models.Issue, tos []string) error { if len(tos) == 0 { return nil } subject := fmt.Sprintf("[%s] %s(#%d)", repo.Name, issue.Name, issue.Index) data := GetMailTmplData(nil) data["IssueLink"] = fmt.Sprintf("%s/%s/issues/%d", owner.Name, repo.Name, issue.Index) data["Subject"] = subject body, err := r.HTMLString("mail/notify/mention", data) if err != nil { return fmt.Errorf("mail.SendIssueMentionMail(fail to render): %v", err) } msg := NewMailMessageFrom(tos, u.Email, subject, body) msg.Info = fmt.Sprintf("Subject: %s, send issue mention emails", subject) SendAsync(&msg) return nil }