Files
portfolio/app/api/email/route.tsx
Denshooter 180b9aa9f8 full upgrade (#31)
*  chore: update CI workflow to include testing and multi-arch build (#29)

*  chore: remove unused dependencies from package-lock.json and updated to a better local dev environment (#30)

*  test: add unit tests

*  test: add unit tests for whole project

*  feat: add whatwg-fetch for improved fetch support

*  chore: update Node.js version to 22 in workflow

*  refactor: update types and improve email handling tests

*  refactor: remove unused imports

*  fix: normalize image name to lowercase in workflows

*  fix: ensure Docker image names are consistently lowercase

*  chore: update

*  chore: update base URL to use secret variable

*  chore: update to login to ghcr

*  fix: add missing 'fi' to close if statement in workflow
2025-02-16 16:36:21 +01:00

75 lines
2.2 KiB
TypeScript

import { type NextRequest, NextResponse } from "next/server";
import nodemailer from "nodemailer";
import SMTPTransport from "nodemailer/lib/smtp-transport";
import Mail from "nodemailer/lib/mailer";
export async function POST(request: NextRequest) {
const body = (await request.json()) as {
email: string;
name: string;
message: string;
};
const { email, name, message } = body;
const user = process.env.MY_EMAIL ?? "";
const pass = process.env.MY_PASSWORD ?? "";
if (!user || !pass) {
console.error("Missing email/password environment variables");
return NextResponse.json(
{ error: "Missing EMAIL or PASSWORD" },
{ status: 500 },
);
}
if (!email || !name || !message) {
console.error("Invalid request body");
return NextResponse.json(
{ error: "Invalid request body" },
{ status: 400 },
);
}
const transportOptions: SMTPTransport.Options = {
host: "smtp.ionos.de",
port: 587,
secure: false,
requireTLS: true,
auth: {
type: "login",
user,
pass,
},
};
const transport = nodemailer.createTransport(transportOptions);
const mailOptions: Mail.Options = {
from: user,
to: user, // Ensure this is the correct email address
subject: `Message from ${name} (${email})`,
text: message + "\n\n" + email,
};
const sendMailPromise = () =>
new Promise<string>((resolve, reject) => {
transport.sendMail(mailOptions, function (err, info) {
if (!err) {
console.log("Email sent");
resolve(info.response);
} else {
console.error("Error sending email:", err);
reject(err.message);
}
});
});
try {
await sendMailPromise();
return NextResponse.json({ message: "Email sent" });
} catch (err) {
console.error("Error sending email:", err);
return NextResponse.json({ error: "Failed to send email" }, { status: 500 });
}
}