diff --git a/pkg/service/user.go b/pkg/service/user.go index 58f1d79c..49279e7d 100644 --- a/pkg/service/user.go +++ b/pkg/service/user.go @@ -199,7 +199,7 @@ func (u user) Authenticate(request UserRequest) error { subject := "String Email Authentication" to := mail.NewEmail("New String User", email) textContent := "Click the link below to complete your e-mail authentication!" - htmlContent := "
" + htmlContent := "" message := mail.NewSingleEmail(from, subject, to, textContent, htmlContent) client := sendgrid.NewSendClient(os.Getenv("SENDGRID_API_KEY")) _, err = client.Send(message)