@@ -80,7 +80,9 @@ func (s *SESEmailService) SendPasswordChangedNotification(ctx context.Context, t
8080 return nil
8181}
8282
83- func (s * SESEmailService ) SendPasswordSetupEmail (ctx context.Context , to , setupURL string , ttl time.Duration , language string ) error {
83+ func (s * SESEmailService ) SendPasswordSetupEmail (
84+ ctx context.Context , to , setupURL string , ttl time.Duration , language string ,
85+ ) error {
8486 subject , body := s .renderer .RenderPasswordSetupEmail (language , setupURL , ttl )
8587
8688 err := s .sendEmail (ctx , to , subject , body )
@@ -98,7 +100,9 @@ func (s *SESEmailService) SendPasswordSetupEmail(ctx context.Context, to, setupU
98100 return nil
99101}
100102
101- func (s * SESEmailService ) SendPasswordResetEmail (ctx context.Context , to , resetURL string , ttl time.Duration , language string ) error {
103+ func (s * SESEmailService ) SendPasswordResetEmail (
104+ ctx context.Context , to , resetURL string , ttl time.Duration , language string ,
105+ ) error {
102106 subject , body := s .renderer .RenderPasswordResetEmail (language , resetURL , ttl )
103107
104108 err := s .sendEmail (ctx , to , subject , body )
0 commit comments