This commit is contained in:
aditya.siregar
2025-03-16 23:42:42 +07:00
parent 2554533e09
commit 214a80e5f9
3 changed files with 8 additions and 4 deletions
@@ -211,7 +211,7 @@ func (s *memberSvc) sendRegistrationOTP(
Recipient: registration.Email,
Subject: "Enaklo - Registration Verification Code",
TemplateName: "member_registration_otp",
TemplatePath: "templates/member_registration_otp.html",
TemplatePath: "/templates/member_registration_otp.html",
Data: emailData,
})
@@ -246,7 +246,7 @@ func (s *memberSvc) sendWelcomeEmail(
Recipient: customer.Email,
Subject: "Welcome to Enaklo Membership Program",
TemplateName: "welcome_member",
TemplatePath: "templates/welcome_member.html",
TemplatePath: "/templates/welcome_member.html",
Data: welcomeData,
})
}
+1 -1
View File
@@ -155,7 +155,7 @@ func (s *orderSvc) sendTransactionReceipt(ctx mycontext.Context, order *entity.O
Recipient: customer.Email,
Subject: "Hore, kamu dapat poin!",
TemplateName: "monthly_points",
TemplatePath: "templates/monthly_points.html",
TemplatePath: "/templates/monthly_points.html",
Data: emailData,
})
}