Skip to content

Commit

Permalink
fix: email (#125)
Browse files Browse the repository at this point in the history
change case in email func to camel
  • Loading branch information
jlangy authored Nov 16, 2023
1 parent 490f4ff commit faa3e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/utils/mailer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const sendUpdateEmail = (realm: any, session: any) => {
const prefix = app_env === 'development' ? '[DEV] ' : '';

return sendEmail({
to: [realm.technical_contact_email, realm.product_owner_email],
to: [realm.technicalContactEmail, realm.productOwnerEmail],
body: `
<h1>Your Realm Registry has been updated.</h1>
<p>
Expand Down

0 comments on commit faa3e93

Please sign in to comment.