Skip to content

Commit

Permalink
fix(worker): use name in contact request subject line
Browse files Browse the repository at this point in the history
  • Loading branch information
pascaliske committed Jul 16, 2023
1 parent ac6b80e commit 14057c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workers/routes/contact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const contact: () => Handler = () => {
to: [{ email: 'info@pascaliske.dev', name: 'Pascal Iske' }],
},
],
subject: `Contact Request from ${data.email}`,
subject: `Contact Request from ${data.name}`,
content: [
{
type: 'text/plain',
Expand Down

0 comments on commit 14057c1

Please sign in to comment.