Skip to content

Commit

Permalink
chore(email): Add sender name to welcome email
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixpereira committed Feb 6, 2025
1 parent 55af4de commit 6ebcc44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/send-welcome-email.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const sendWelcomeEmail = async (
const emailHtml = await render(React.createElement(Email, { firstName }));

const options = {
from: env.SMTP_EMAIL_ADDRESS,
from: `CS Club <${env.SMTP_EMAIL_ADDRESS}>`,
to: recipientEmail,
subject: 'Welcome to the CS Club!',
html: emailHtml,
Expand Down

0 comments on commit 6ebcc44

Please sign in to comment.