diff --git a/src/app/api/admin/company-coverage-reminder/route.ts b/src/app/api/admin/company-coverage-reminder/route.ts
index f1583bd..4468448 100644
--- a/src/app/api/admin/company-coverage-reminder/route.ts
+++ b/src/app/api/admin/company-coverage-reminder/route.ts
@@ -19,7 +19,7 @@ export async function POST(request: NextRequest) {
html: `
-
Relevant Media Properties
+
Relevant Media Properties
AV Beat · AV Beat — Company Story Engine
New Company Stories Queued for Review
@@ -32,11 +32,11 @@ export async function POST(request: NextRequest) {
${moreText}
+ ? `
`
: "";
@@ -45,7 +45,7 @@ export async function POST(req: NextRequest) {
|
- AV Beat
+ AV Beat
|
@@ -53,10 +53,10 @@ export async function POST(req: NextRequest) {
Someone shared an article with you
${noteHtml}
- NEWS
+ NEWS
${articleTitle}
${articleExcerpt}
- Read Article
+ Read Article
|
diff --git a/src/app/api/newsletter/subscribe/route.ts b/src/app/api/newsletter/subscribe/route.ts
index 52cc045..c42c910 100644
--- a/src/app/api/newsletter/subscribe/route.ts
+++ b/src/app/api/newsletter/subscribe/route.ts
@@ -86,7 +86,7 @@ async function sendWelcome(email: string, topics?: string[]) {
const topicsBlock =
topics && topics.length > 0
- ? `
You'll receive coverage on: ${topics.join(', ')}
`
+ ? `
You'll receive coverage on: ${topics.join(', ')}
`
: '';
await transporter.sendMail({
@@ -96,24 +96,24 @@ async function sendWelcome(email: string, topics?: string[]) {
html: `
Welcome to AV Beat
-
-
+
+
-
+
|
- AV Beat Newsletter
+ AV Beat Newsletter
You're in
- Thanks for subscribing to AV Beat — the digital platform for pro AV, live production, and display tech professionals.
+ Thanks for subscribing to AV Beat — the digital platform for pro AV, live production, and display tech professionals.
${topicsBlock}
|
|
- You'll get one editorial dispatch a week — industry news, product launches, NAB/IBC coverage, and deep-dives. No spam, no sales calls.
+ You'll get one editorial dispatch a week — industry news, product launches, InfoComm/ISE coverage, and deep-dives. No spam, no sales calls.
|
|
- Browse Industry News
+ Browse AV Industry News
|
- |
- You're receiving this because you signed up at avbeat.com. Unsubscribe anytime.
+ | |
+ You're receiving this because you signed up at avbeat.com. Unsubscribe anytime.
|
diff --git a/src/app/api/newsletter/subscribers/route.ts b/src/app/api/newsletter/subscribers/route.ts
index 5af4f15..c8acd4f 100644
--- a/src/app/api/newsletter/subscribers/route.ts
+++ b/src/app/api/newsletter/subscribers/route.ts
@@ -124,37 +124,37 @@ export async function POST(req: NextRequest) {
const articlesHtml = articles
.map(
(a: { title: string; excerpt?: string; url?: string; image?: string; category?: string }) => `
-
- ${a.category ? ` ${a.category}` : ''}
+
+ ${a.category ? ` ${a.category}` : ''}
${a.url ? `${a.title}` : a.title}
${a.excerpt ? ` ${a.excerpt} ` : ''}
- ${a.url ? ` Read more →` : ''}
+ ${a.url ? ` Read more →` : ''}
`
)
.join('');
const emailHtml = `
-
+
-
- AV Beat
+
+ AV Beat
News & Intelligence for Pro AV, Live Production & Display Tech
${previewText ? ` ${previewText} ` : ''}
- ${customMessage ? ` ` : ''}
+ ${customMessage ? ` ` : ''}
${articlesHtml}
-
|