Skip to content
Snippets Groups Projects
Verified Commit 1512b1db authored by Gabriel Zachmann's avatar Gabriel Zachmann
Browse files

skipcq

parent 293f5f47
No related branches found
No related tags found
No related merge requests found
......@@ -77,6 +77,7 @@ func (n integratedNotifier) SendEmailRequest(req pkg.EmailNotificationRequest) {
// SendTemplateEmail sends a templated email through the relevant notification server
func SendTemplateEmail(to, subject string, preferHTML bool, template string, binding any) {
// skipcq GO-E1007
go func() {
req := pkg.EmailNotificationRequest{
To: to,
......@@ -91,6 +92,7 @@ func SendTemplateEmail(to, subject string, preferHTML bool, template string, bin
// SendICSMail sends a ics calendar invite via email through the relevant notification server
func SendICSMail(to, subject, text string, attachments ...mailing.Attachment) {
// skipcq GO-E1007
go func() {
req := pkg.EmailNotificationRequest{
To: to,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment