diff --git a/src/Eccube/Service/MailService.php b/src/Eccube/Service/MailService.php index 38cb84bb64b..27b64d016c4 100644 --- a/src/Eccube/Service/MailService.php +++ b/src/Eccube/Service/MailService.php @@ -376,7 +376,6 @@ public function sendPasswordResetNotificationMail(\Eccube\Entity\Customer $Custo ->setSubject('[' . $this->BaseInfo->getShopName() . '] パスワード変更のご確認') ->setFrom(array($this->BaseInfo->getEmail01() => $this->BaseInfo->getShopName())) ->setTo(array($Customer->getEmail())) - ->setBcc($this->BaseInfo->getEmail01()) ->setReplyTo($this->BaseInfo->getEmail03()) ->setReturnPath($this->BaseInfo->getEmail04()) ->setBody($body); @@ -417,7 +416,6 @@ public function sendPasswordResetCompleteMail(\Eccube\Entity\Customer $Customer, ->setSubject('[' . $this->BaseInfo->getShopName() . '] パスワード変更のお知らせ') ->setFrom(array($this->BaseInfo->getEmail01() => $this->BaseInfo->getShopName())) ->setTo(array($Customer->getEmail())) - ->setBcc($this->BaseInfo->getEmail01()) ->setReplyTo($this->BaseInfo->getEmail03()) ->setReturnPath($this->BaseInfo->getEmail04()) ->setBody($body);