Compare commits
2 commits
a05407eba0
...
5e954ca751
Author | SHA1 | Date | |
---|---|---|---|
5e954ca751 | |||
6ef9395140 |
2 changed files with 2 additions and 5 deletions
|
@ -165,12 +165,13 @@ func (r *RequestRepo) sendConfirmationMail(request models.Request) error {
|
|||
message.SetBodyString(mail.TypeTextPlain, messageText.String())
|
||||
|
||||
var options []mail.Option
|
||||
options = append(options, mail.WithPort(r.config.Mailer.SmtpPort))
|
||||
if r.config.Mailer.SmtpUseAuth {
|
||||
options = append(options, mail.WithSMTPAuth(mail.SMTPAuthPlain))
|
||||
options = append(options, mail.WithUsername(r.config.Mailer.SmtpIdentity))
|
||||
options = append(options, mail.WithPassword(r.config.Mailer.SmtpPassword))
|
||||
}
|
||||
client, err := mail.NewClient(r.config.Mailer.SmtpHost, mail.WithPort(r.config.Mailer.SmtpPort))
|
||||
client, err := mail.NewClient(r.config.Mailer.SmtpHost, options...)
|
||||
if err != nil {
|
||||
log.Println(err.Error())
|
||||
return err
|
||||
|
|
|
@ -6,9 +6,5 @@
|
|||
Du solltest eine Mail mit einem Aktivierungslink erhalten haben.
|
||||
Klicke auf diesen, um die Sprechstunde öffentlich anzuzeigen.
|
||||
</div>
|
||||
<div class="col-md-8 offset-md-2 alert alert-warning">
|
||||
Wir haben vermehrt erfahren, dass Mails, die an GMX oder Web.de weitergeleitet werden, nicht zugestellt werden.
|
||||
Falls du davon betroffen bist, melde dich bei <a href="mailto:sprechstundentool@mathebau.de">sprechstundentool@mathebau.de</a>.
|
||||
</div>
|
||||
|
||||
{{end}}
|
||||
|
|
Loading…
Add table
Reference in a new issue