From efcef48f89495172093bccee2a4940b967022f58 Mon Sep 17 00:00:00 2001 From: Cris Date: Mon, 9 May 2022 11:14:01 +0200 Subject: [PATCH] Changed Sanchomail 'From' to noreply --- application/helpers/hlp_sancho_helper.php | 2 +- include/sancho.inc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application/helpers/hlp_sancho_helper.php b/application/helpers/hlp_sancho_helper.php index d599e40bc..e57802432 100644 --- a/application/helpers/hlp_sancho_helper.php +++ b/application/helpers/hlp_sancho_helper.php @@ -49,7 +49,7 @@ function sendSanchoMail($vorlage_kurzbz, $vorlage_data, $to, $subject, $headerIm if ($from == '') { - $from = 'sancho@'.DOMAIN; + $from = 'noreply@'.DOMAIN; } // Embed sancho header and footer image diff --git a/include/sancho.inc.php b/include/sancho.inc.php index 5fc6fcdab..0d5c8e8a4 100644 --- a/include/sancho.inc.php +++ b/include/sancho.inc.php @@ -40,7 +40,7 @@ const DEFAULT_SANCHO_FOOTER_IMG = 'sancho_footer_DEFAULT.jpg'; */ function sendSanchoMail($vorlage_kurzbz, $vorlage_data, $to, $subject, $headerImg = DEFAULT_SANCHO_HEADER_IMG, $footerImg = DEFAULT_SANCHO_FOOTER_IMG, $replyTo = '', $cc = '') { - $from = 'sancho@'. DOMAIN; + $from = 'noreply@'. DOMAIN; $sanchoHeader_img = dirname(__FILE__). '/../skin/images/sancho/'. $headerImg; $sanchoFooter_img = dirname(__FILE__). '/../skin/images/sancho/'. $footerImg;