fix: use escape function from validator package

This commit is contained in:
Dorian Niemiec 2024-09-08 05:47:32 +02:00
parent b45d5ab83b
commit fcd6513a2e

View file

@ -1,7 +1,7 @@
import { mailOptions, transporter } from "@/lib/nodemailer/nodemailer";
import { NextRequest, NextResponse } from "next/server";
import dns from "dns/promises";
import { isEmail } from "validator";
import { isEmail, escape } from "validator";
const CONTACT_MESSAGE_FIELDS: Record<string, string> = {
name: "Name",
@ -9,15 +9,6 @@ const CONTACT_MESSAGE_FIELDS: Record<string, string> = {
message: "Message"
};
const escapeHtml = (text: string) => {
return text
.replace(/&/g, "&amp;")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/"/g, "&quot;")
.replace(/'/g, "&#039;");
};
const generateEmailContent = (data: Record<string, string>) => {
const stringData = Object.entries(data).reduce(
(str, [key, val]) =>
@ -31,9 +22,9 @@ const generateEmailContent = (data: Record<string, string>) => {
str +
(key == "captchaToken"
? ""
: `<h3 class="form-heading">${escapeHtml(
: `<h3 class="form-heading">${escape(
CONTACT_MESSAGE_FIELDS[key] || key
)}</h3><p class="form-answer">${escapeHtml(val).replace(
)}</h3><p class="form-answer">${escape(val).replace(
/\n/g,
"<br/>"
)}</p>`),