Skip to content

Commit

Permalink
Missing closing angle bracket (oss-apps#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
rossnick authored and alexanderwassbjer committed Feb 7, 2025
1 parent 133ad90 commit 52060e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/mailer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export async function sendSignUpEmail(email: string, token: string, url: string)

const subject = 'Sign in to SplitPro';
const text = `Hey,\n\nYou can sign in to SplitPro by clicking the below URL:\n${url}\n\nYou can also use this OTP: ${token}\n\nThanks,\nSplitPro Team`;
const html = `<p>Hey,</p> <p>You can sign in to SplitPro by clicking the below URL:</p><p><a href="${url}">Sign in to ${host}</a></p><p>You can also use this OTP: <b>${token}</b></p<br /><br /><p>Thanks,</p><br/>SplitPro Team</p>`;
const html = `<p>Hey,</p> <p>You can sign in to SplitPro by clicking the below URL:</p><p><a href="${url}">Sign in to ${host}</a></p><p>You can also use this OTP: <b>${token}</b></p><br /><br /><p>Thanks,</p><br/>SplitPro Team</p>`;

return await sendMail(email, subject, text, html);
}
Expand Down

0 comments on commit 52060e2

Please sign in to comment.