From c626823f19fb4cb3865991782a653bc09b8ab5f0 Mon Sep 17 00:00:00 2001 From: Jukka Lampikoski Date: Mon, 9 Mar 2026 22:36:38 +0200 Subject: [PATCH] Change mail From address to asiakaspalvelu@konesaliturku.fi Use the actual mailbox as sender instead of noreply to avoid delivery issues. Co-Authored-By: Claude Opus 4.6 --- api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api.php b/api.php index b5678da..52bb253 100644 --- a/api.php +++ b/api.php @@ -110,7 +110,7 @@ switch ($action) { if ($phone) $body .= "Puhelin: $phone\n"; $body .= "\nViesti:\n$message\n"; - $headers = "From: noreply@konesaliturku.fi\r\n"; + $headers = "From: asiakaspalvelu@konesaliturku.fi\r\n"; $headers .= "Reply-To: $email\r\n"; $headers .= "Content-Type: text/plain; charset=UTF-8\r\n"; @@ -291,7 +291,7 @@ switch ($action) { // Send email $to = 'asiakaspalvelu@konesaliturku.fi'; $subject = 'Tarjouspyyntö: ' . $name . ($company ? " ($company)" : ''); - $headers = "From: noreply@konesaliturku.fi\r\n"; + $headers = "From: asiakaspalvelu@konesaliturku.fi\r\n"; $headers .= "Reply-To: $email\r\n"; $headers .= "Content-Type: text/plain; charset=UTF-8\r\n";