Skip to content

Commit a27de4f

Browse files
authored
Merge pull request #230 from Web-Dev-Path/fix/update-form-email-config
Update Form Email Config
2 parents 1a2c834 + 27f4895 commit a27de4f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
141141
- Fixed empty blog category by using per_page parameter
142142
- Updated Next.js from 13.4.19 to 14.2.20
143143
- Resolved `fetchPriority` prop warning in next/image
144+
- Updated sendgridEmail to [email protected]

pages/api/sendEmail.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default async (email, name, subject, message, subscribe) => {
1010
// sendgridEmail: This is the email verfied by sendgrid
1111
// the email will appear to be sent from this email
1212
// If a non verified email is used, we get a 403 error
13-
const sendgridEmail = 'hello@webdevpath.co';
13+
const sendgridEmail = 'support@webdevpath.co';
1414

1515
const emailContent = `
1616
<b>Name:</b> ${name} <br/>

0 commit comments

Comments
 (0)