Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/sendEmail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sgMail.setApiKey(process.env.NEXT_PUBLIC_SENDGRID_API_KEY as string);
const sendEmail = async (to: string, subject: string, text: string, html: string) => {
const msg = {
to,
from: 'your-email@example.com', // Use the email address or domain you verified with SendGrid
from: 'leftover@bu.edu', // Use the email address or domain you verified with SendGrid
subject,
text,
html,
Expand Down