Compare commits

...

6 Commits

Author SHA1 Message Date
AllenTJ7
3e1d74196d Merge branch 'dev' into phonepe 2025-06-25 19:57:49 +05:30
d49be73784 feature/fitlien-email (#65)
All checks were successful
Deploy FitLien services to Dev / Deploy to Dev (push) Successful in 3m17s
Co-authored-by: Sharon Dcruz <sharondcruz@cosq.net>
Reviewed-on: #65
Co-authored-by: DhanshCOSQ <dhanshas@cosq.net>
Co-committed-by: DhanshCOSQ <dhanshas@cosq.net>
2025-06-24 12:23:03 +00:00
fe328e2e64 Changed services region (#64)
All checks were successful
Deploy FitLien services to Dev / Deploy to Dev (push) Successful in 3m21s
Reviewed-on: #64
Reviewed-by: Dhansh A S <dhanshas@cosq.net>
Co-authored-by: Sharon Dcruz <sharondcruz@cosq.net>
Co-committed-by: Sharon Dcruz <sharondcruz@cosq.net>
2025-06-24 12:13:31 +00:00
c80fb0c4b4 phonepe (#63)
All checks were successful
Deploy FitLien services to Dev / Deploy to Dev (push) Successful in 3m32s
Co-authored-by: AllenTJ7 <163137620+AllenTJ7@users.noreply.github.com>
Reviewed-on: #63
2025-06-24 11:53:03 +00:00
9cbdcf3c37 Update package-lock.json
All checks were successful
Deploy FitLien services to Dev / Deploy to Dev (push) Successful in 3m44s
2025-06-24 15:18:54 +05:30
f518d4bc9d phonepe (#62)
All checks were successful
Deploy FitLien services to Dev / Deploy to Dev (push) Successful in 3m30s
Co-authored-by: AllenTJ7 <163137620+AllenTJ7@users.noreply.github.com>
Reviewed-on: #62
2025-06-24 08:55:48 +00:00
2 changed files with 2212 additions and 1483 deletions

File diff suppressed because it is too large Load Diff

View File

@ -37,7 +37,7 @@ const stripHtml = (html: string): string => {
async function sendSimpleEmail(data: EmailRequest, recipients: string[]) {
const ses = new SESClient({
region: 'ap-south-1',
region: '#{AWS_REGION}#',
credentials: {
accessKeyId: process.env.AWS_ACCESS_KEY_ID || '',
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY || ''
@ -63,7 +63,7 @@ async function sendSimpleEmail(data: EmailRequest, recipients: string[]) {
async function sendEmailWithAttachments(data: EmailRequest, recipients: string[]) {
const ses = new SESClient({
region: '#{SERVICES_RGN}#',
region: 'ap-south-1',
credentials: {
accessKeyId: process.env.AWS_ACCESS_KEY_ID || '',
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY || ''